183 lines
5.6 KiB
Python
183 lines
5.6 KiB
Python
load("//tensorflow:tensorflow.bzl", "tf_py_test")
|
|
|
|
package(
|
|
default_visibility = [
|
|
"//tensorflow/python/feature_column:__subpackages__",
|
|
"//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 = "feature_column",
|
|
srcs = ["__init__.py"],
|
|
srcs_version = "PY3",
|
|
deps = [
|
|
":base_feature_layer",
|
|
":dense_features",
|
|
":dense_features_v2",
|
|
":sequence_feature_column",
|
|
],
|
|
)
|
|
|
|
py_library(
|
|
name = "base_feature_layer",
|
|
srcs = ["base_feature_layer.py"],
|
|
srcs_version = "PY3",
|
|
deps = [
|
|
"//tensorflow/python:array_ops",
|
|
"//tensorflow/python:variable_scope",
|
|
"//tensorflow/python/feature_column:feature_column_v2",
|
|
"//tensorflow/python/keras/engine:base_layer",
|
|
"//tensorflow/python/keras/utils:generic_utils",
|
|
],
|
|
)
|
|
|
|
py_library(
|
|
name = "dense_features",
|
|
srcs = [
|
|
"dense_features.py",
|
|
],
|
|
srcs_version = "PY3",
|
|
deps = [
|
|
":base_feature_layer",
|
|
"//tensorflow/python:framework_ops",
|
|
"//tensorflow/python:util",
|
|
"//tensorflow/python/feature_column:feature_column_v2",
|
|
"//tensorflow/python/keras:backend",
|
|
"//tensorflow/python/util:tf_export",
|
|
],
|
|
)
|
|
|
|
py_library(
|
|
name = "dense_features_v2",
|
|
srcs = [
|
|
"dense_features_v2.py",
|
|
],
|
|
srcs_version = "PY3",
|
|
deps = [
|
|
":base_feature_layer",
|
|
":dense_features",
|
|
"//tensorflow/python:framework_ops",
|
|
"//tensorflow/python/feature_column:feature_column_v2",
|
|
"//tensorflow/python/util:tf_export",
|
|
],
|
|
)
|
|
|
|
tf_py_test(
|
|
name = "dense_features_test",
|
|
srcs = ["dense_features_test.py"],
|
|
tags = ["no_pip"],
|
|
deps = [
|
|
":dense_features",
|
|
"//tensorflow/python:array_ops",
|
|
"//tensorflow/python:client_testlib",
|
|
"//tensorflow/python:constant_op",
|
|
"//tensorflow/python:dtypes",
|
|
"//tensorflow/python:errors",
|
|
"//tensorflow/python:framework_ops",
|
|
"//tensorflow/python:framework_test_lib",
|
|
"//tensorflow/python:lookup_ops",
|
|
"//tensorflow/python:partitioned_variables",
|
|
"//tensorflow/python:session",
|
|
"//tensorflow/python:sparse_tensor",
|
|
"//tensorflow/python:variables",
|
|
"//tensorflow/python/eager:backprop",
|
|
"//tensorflow/python/eager:context",
|
|
"//tensorflow/python/feature_column:feature_column_v2",
|
|
"//tensorflow/python/keras",
|
|
"//tensorflow/python/keras:combinations",
|
|
],
|
|
)
|
|
|
|
tf_py_test(
|
|
name = "dense_features_v2_test",
|
|
srcs = ["dense_features_v2_test.py"],
|
|
tags = ["no_pip"],
|
|
deps = [
|
|
":dense_features_v2",
|
|
"//tensorflow/python:array_ops",
|
|
"//tensorflow/python:client_testlib",
|
|
"//tensorflow/python:constant_op",
|
|
"//tensorflow/python:dtypes",
|
|
"//tensorflow/python:errors",
|
|
"//tensorflow/python:framework_ops",
|
|
"//tensorflow/python:framework_test_lib",
|
|
"//tensorflow/python:lookup_ops",
|
|
"//tensorflow/python:session",
|
|
"//tensorflow/python:sparse_tensor",
|
|
"//tensorflow/python:variables",
|
|
"//tensorflow/python/eager:backprop",
|
|
"//tensorflow/python/eager:context",
|
|
"//tensorflow/python/feature_column:feature_column_v2",
|
|
"//tensorflow/python/keras",
|
|
"//tensorflow/python/keras:combinations",
|
|
],
|
|
)
|
|
|
|
py_library(
|
|
name = "sequence_feature_column",
|
|
srcs = ["sequence_feature_column.py"],
|
|
srcs_version = "PY3",
|
|
deps = [
|
|
":base_feature_layer",
|
|
"//tensorflow/python:array_ops",
|
|
"//tensorflow/python:check_ops",
|
|
"//tensorflow/python:framework_ops",
|
|
"//tensorflow/python/feature_column:feature_column_v2",
|
|
"//tensorflow/python/keras:backend",
|
|
"//tensorflow/python/util:tf_export",
|
|
],
|
|
)
|
|
|
|
tf_py_test(
|
|
name = "sequence_feature_column_test",
|
|
srcs = ["sequence_feature_column_test.py"],
|
|
deps = [
|
|
":sequence_feature_column",
|
|
"//tensorflow/python:client_testlib",
|
|
"//tensorflow/python:dtypes",
|
|
"//tensorflow/python:errors",
|
|
"//tensorflow/python:extra_py_tests_deps",
|
|
"//tensorflow/python:framework_ops",
|
|
"//tensorflow/python:framework_test_lib",
|
|
"//tensorflow/python:lookup_ops",
|
|
"//tensorflow/python:session",
|
|
"//tensorflow/python:sparse_tensor",
|
|
"//tensorflow/python:variables",
|
|
"//tensorflow/python/feature_column:feature_column_v2",
|
|
"//tensorflow/python/keras",
|
|
"//tensorflow/python/keras:combinations",
|
|
"@absl_py//absl/testing:parameterized",
|
|
],
|
|
)
|
|
|
|
tf_py_test(
|
|
name = "sequence_feature_column_integration_test",
|
|
srcs = ["sequence_feature_column_integration_test.py"],
|
|
python_version = "PY3",
|
|
srcs_version = "PY3",
|
|
tags = ["no_pip"],
|
|
deps = [
|
|
":dense_features",
|
|
":sequence_feature_column",
|
|
"//tensorflow/python:client_testlib",
|
|
"//tensorflow/python:framework_test_lib",
|
|
"//tensorflow/python:init_ops_v2",
|
|
"//tensorflow/python:parsing_ops",
|
|
"//tensorflow/python:sparse_tensor",
|
|
"//tensorflow/python:util",
|
|
"//tensorflow/python:variables",
|
|
"//tensorflow/python/data/ops:dataset_ops",
|
|
"//tensorflow/python/feature_column:feature_column_v2",
|
|
"//tensorflow/python/keras:metrics", # Import it here since base_layer didn't import it due to circular dependency.
|
|
"//tensorflow/python/keras/layers:recurrent",
|
|
],
|
|
)
|