This is the final dependency from feature_column to Keras. The copied functions are trimmed down version since it doesn't have access to Keras global custom object registration, which I don't think are used by feature column. The custom object scope will still work. PiperOrigin-RevId: 315621765 Change-Id: I2ae22af83d625c8e55c7fe21b42194bbdbfded23
253 lines
7.8 KiB
Python
253 lines
7.8 KiB
Python
load("//tensorflow:tensorflow.bzl", "py_test", "tf_py_test")
|
|
|
|
package(
|
|
default_visibility = ["//tensorflow:internal"],
|
|
licenses = ["notice"], # Apache 2.0
|
|
)
|
|
|
|
py_library(
|
|
name = "feature_column_py",
|
|
srcs = ["feature_column_lib.py"],
|
|
srcs_version = "PY2AND3",
|
|
deps = [
|
|
":feature_column",
|
|
":feature_column_v2",
|
|
"//tensorflow/python:util",
|
|
"//tensorflow/python/keras/feature_column",
|
|
],
|
|
)
|
|
|
|
py_library(
|
|
name = "feature_column",
|
|
srcs = ["feature_column.py"],
|
|
srcs_version = "PY2AND3",
|
|
deps = [
|
|
":utils",
|
|
"@six_archive//:six",
|
|
"//tensorflow/python:array_ops",
|
|
"//tensorflow/python:check_ops",
|
|
"//tensorflow/python:control_flow_ops",
|
|
"//tensorflow/python:dtypes",
|
|
"//tensorflow/python:embedding_ops",
|
|
"//tensorflow/python:framework_ops",
|
|
"//tensorflow/python:init_ops",
|
|
"//tensorflow/python:layers_base",
|
|
"//tensorflow/python:lookup_ops",
|
|
"//tensorflow/python:math_ops",
|
|
"//tensorflow/python:nn_ops",
|
|
"//tensorflow/python:parsing_ops",
|
|
"//tensorflow/python:platform",
|
|
"//tensorflow/python:resource_variable_ops",
|
|
"//tensorflow/python:sparse_ops",
|
|
"//tensorflow/python:sparse_tensor",
|
|
"//tensorflow/python:string_ops",
|
|
"//tensorflow/python:template",
|
|
"//tensorflow/python:tensor_shape",
|
|
"//tensorflow/python:training",
|
|
"//tensorflow/python:util",
|
|
"//tensorflow/python:variable_scope",
|
|
"//tensorflow/python:variables",
|
|
"//tensorflow/python/eager:context",
|
|
# TODO(scottzhu): Remove metrics after we cleanup the keras internal cyclar dependency.
|
|
# //third_party/tensorflow/python/feature_column:feature_column
|
|
# //third_party/tensorflow/python/keras/engine:engine
|
|
# .-> //third_party/tensorflow/python/keras/distribute:distribute
|
|
# | //third_party/tensorflow/python/keras:metrics
|
|
# `-- //third_party/tensorflow/python/keras/distribute:distribute
|
|
"//tensorflow/python/keras:metrics",
|
|
],
|
|
)
|
|
|
|
py_library(
|
|
name = "feature_column_v2",
|
|
srcs = [
|
|
"feature_column_v2.py",
|
|
"sequence_feature_column.py",
|
|
"serialization.py",
|
|
],
|
|
srcs_version = "PY2AND3",
|
|
deps = [
|
|
":feature_column",
|
|
":utils",
|
|
"//tensorflow/python:array_ops",
|
|
"//tensorflow/python:check_ops",
|
|
"//tensorflow/python:control_flow_ops",
|
|
"//tensorflow/python:dtypes",
|
|
"//tensorflow/python:embedding_ops",
|
|
"//tensorflow/python:framework_ops",
|
|
"//tensorflow/python:init_ops",
|
|
"//tensorflow/python:lookup_ops",
|
|
"//tensorflow/python:math_ops",
|
|
"//tensorflow/python:parsing_ops",
|
|
"//tensorflow/python:platform",
|
|
"//tensorflow/python:sparse_ops",
|
|
"//tensorflow/python:sparse_tensor",
|
|
"//tensorflow/python:string_ops",
|
|
"//tensorflow/python:tensor_shape",
|
|
"//tensorflow/python:tf_export",
|
|
"//tensorflow/python:training",
|
|
"//tensorflow/python:util",
|
|
"//tensorflow/python:variable_scope",
|
|
"//tensorflow/python:variables",
|
|
"//tensorflow/python/eager:context",
|
|
"//tensorflow/python/training/tracking",
|
|
"//tensorflow/python/training/tracking:data_structures",
|
|
"//third_party/py/numpy",
|
|
"@six_archive//:six",
|
|
],
|
|
)
|
|
|
|
filegroup(
|
|
name = "vocabulary_testdata",
|
|
srcs = [
|
|
"testdata/embedding.ckpt.data-00000-of-00001",
|
|
"testdata/embedding.ckpt.index",
|
|
"testdata/embedding.ckpt.meta",
|
|
"testdata/unicode_vocabulary",
|
|
"testdata/warriors_vocabulary.txt",
|
|
"testdata/wire_vocabulary.txt",
|
|
],
|
|
)
|
|
|
|
tf_py_test(
|
|
name = "feature_column_test",
|
|
srcs = ["feature_column_test.py"],
|
|
tags = [
|
|
"no_cuda_on_cpu_tap",
|
|
"no_pip",
|
|
"no_rocm",
|
|
"no_windows",
|
|
],
|
|
deps = [
|
|
":feature_column_test_main_lib",
|
|
],
|
|
)
|
|
|
|
py_library(
|
|
name = "feature_column_test_main_lib",
|
|
srcs = ["feature_column_test.py"],
|
|
data = [":vocabulary_testdata"],
|
|
deps = [
|
|
":feature_column",
|
|
":feature_column_py",
|
|
"//tensorflow/core:protos_all_py",
|
|
"//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:parsing_ops",
|
|
"//tensorflow/python:partitioned_variables",
|
|
"//tensorflow/python:session",
|
|
"//tensorflow/python:sparse_tensor",
|
|
"//tensorflow/python:training",
|
|
"//tensorflow/python:variable_scope",
|
|
"//tensorflow/python:variables",
|
|
"//tensorflow/python/eager:backprop",
|
|
"//tensorflow/python/eager:context",
|
|
"//third_party/py/numpy",
|
|
],
|
|
)
|
|
|
|
tf_py_test(
|
|
name = "feature_column_v2_test",
|
|
srcs = ["feature_column_v2_test.py"],
|
|
shard_count = 5,
|
|
tags = [
|
|
"no_cuda_on_cpu_tap",
|
|
"no_pip",
|
|
"no_rocm",
|
|
"no_windows",
|
|
],
|
|
deps = [":feature_column_v2_test_main_lib"],
|
|
)
|
|
|
|
py_library(
|
|
name = "feature_column_v2_test_main_lib",
|
|
srcs = ["feature_column_v2_test.py"],
|
|
data = [":vocabulary_testdata"],
|
|
deps = [
|
|
":feature_column_py",
|
|
":feature_column_v2",
|
|
"//tensorflow/core:protos_all_py",
|
|
"//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:parsing_ops",
|
|
"//tensorflow/python:partitioned_variables",
|
|
"//tensorflow/python:session",
|
|
"//tensorflow/python:sparse_tensor",
|
|
"//tensorflow/python:training",
|
|
"//tensorflow/python:variable_scope",
|
|
"//tensorflow/python:variables",
|
|
"//tensorflow/python/eager:backprop",
|
|
"//tensorflow/python/eager:context",
|
|
"//third_party/py/numpy",
|
|
],
|
|
)
|
|
|
|
py_library(
|
|
name = "utils",
|
|
srcs = ["utils.py"],
|
|
srcs_version = "PY2AND3",
|
|
deps = [
|
|
"//tensorflow/python:array_ops",
|
|
"//tensorflow/python:dtypes",
|
|
"//tensorflow/python:framework_ops",
|
|
"//tensorflow/python:math_ops",
|
|
"//tensorflow/python:util",
|
|
],
|
|
)
|
|
|
|
tf_py_test(
|
|
name = "sequence_feature_column_test",
|
|
srcs = ["sequence_feature_column_test.py"],
|
|
deps = [
|
|
":feature_column_v2",
|
|
"//tensorflow/python:client_testlib",
|
|
"//tensorflow/python:dtypes",
|
|
"//tensorflow/python:errors",
|
|
"//tensorflow/python:framework_ops",
|
|
"//tensorflow/python:math_ops",
|
|
"//tensorflow/python:parsing_ops",
|
|
"//tensorflow/python:session",
|
|
"//tensorflow/python:sparse_tensor",
|
|
"//tensorflow/python:training",
|
|
"//third_party/py/numpy",
|
|
"@absl_py//absl/testing:parameterized",
|
|
],
|
|
)
|
|
|
|
py_test(
|
|
name = "sequence_feature_column_integration_test",
|
|
srcs = ["sequence_feature_column_integration_test.py"],
|
|
python_version = "PY3",
|
|
srcs_version = "PY2AND3",
|
|
tags = ["no_pip"],
|
|
deps = [
|
|
":feature_column_v2",
|
|
"//tensorflow/python:client_testlib",
|
|
"//tensorflow/python:parsing_ops",
|
|
"//tensorflow/python:util",
|
|
],
|
|
)
|
|
|
|
tf_py_test(
|
|
name = "serialization_test",
|
|
srcs = ["serialization_test.py"],
|
|
deps = [
|
|
":feature_column_v2",
|
|
"//tensorflow/python:client_testlib",
|
|
"//tensorflow/python:util",
|
|
"@absl_py//absl/testing:parameterized",
|
|
],
|
|
)
|