load("@rules_python//python:defs.bzl", "py_library")

package(default_visibility = ["//visibility:public"])

licenses(["notice"])

py_library(
    name = "cifar100_dataset",
    srcs = ["cifar100_dataset.py"],
    srcs_version = "PY3",
)

py_library(
    name = "emnist_dataset",
    srcs = ["emnist_dataset.py"],
    srcs_version = "PY3",
)

py_library(
    name = "emnist_ae_dataset",
    srcs = ["emnist_ae_dataset.py"],
    srcs_version = "PY3",
)

py_library(
    name = "shakespeare_dataset",
    srcs = ["shakespeare_dataset.py"],
    srcs_version = "PY3",
)

py_library(
    name = "stackoverflow_dataset",
    srcs = ["stackoverflow_dataset.py"],
    srcs_version = "PY3",
)

py_library(
    name = "stackoverflow_lr_dataset",
    srcs = ["stackoverflow_lr_dataset.py"],
    srcs_version = "PY3",
)
