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

64 lines
1.5 KiB
Python

# Description:
# Contains the Keras Premade Models (internal TensorFlow version).
load("//tensorflow:tensorflow.bzl", "tf_py_test")
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 = "premade",
srcs = [
"__init__.py",
"linear.py",
"wide_deep.py",
],
srcs_version = "PY3",
deps = [
"//tensorflow/python:framework",
"//tensorflow/python:math_ops",
"//tensorflow/python:variable_scope",
"//tensorflow/python:variables",
"//tensorflow/python/keras:backend_config",
"//tensorflow/python/keras:regularizers",
],
)
tf_py_test(
name = "linear_test",
size = "medium",
srcs = ["linear_test.py"],
python_version = "PY3",
shard_count = 2,
deps = [
":premade",
"//tensorflow/python:client_testlib",
"//tensorflow/python/keras",
"//third_party/py/numpy",
],
)
tf_py_test(
name = "wide_deep_test",
size = "medium",
srcs = ["wide_deep_test.py"],
python_version = "PY3",
shard_count = 2,
srcs_version = "PY2AND3",
deps = [
":premade",
"//tensorflow/python:client_testlib",
"//tensorflow/python/keras",
"//third_party/py/numpy",
],
)