STT-tensorflow/tensorflow/python/keras/datasets/BUILD
A. Unique TensorFlower 034633f23b PY2 removal cleanup
PiperOrigin-RevId: 352106691
Change-Id: I382d53c64f0d29da430b8cb6d2395a2cb281509e
2021-01-15 16:48:57 -08:00

41 lines
969 B
Python

# Description:
# Contains the Keras datasets package (internal TensorFlow version).
package(
default_visibility = [
"//tensorflow/python/keras:__subpackages__",
],
licenses = ["notice"], # Apache 2.0
)
filegroup(
name = "all_py_srcs",
srcs = glob(["*.py"]),
visibility = ["//tensorflow/python/keras/google/private_tf_api_test:__pkg__"],
)
py_library(
name = "datasets",
srcs = [
"__init__.py",
"boston_housing.py",
"cifar.py",
"cifar10.py",
"cifar100.py",
"fashion_mnist.py",
"imdb.py",
"mnist.py",
"reuters.py",
],
srcs_version = "PY3",
visibility = ["//visibility:public"],
deps = [
"//tensorflow/python:platform",
"//tensorflow/python:util",
"//tensorflow/python/keras:backend",
"//tensorflow/python/keras/utils:engine_utils",
"//third_party/py/numpy",
"@six_archive//:six",
],
)