load("//tensorflow:tensorflow.bzl", "py_test", "tf_py_test") package( default_visibility = ["//tensorflow:internal"], licenses = ["notice"], ) py_library( name = "feature_column_py", srcs = ["feature_column_lib.py"], srcs_version = "PY3", 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 = "PY3", 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 = "PY3", 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: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", "//tensorflow/python/util:tf_export", "//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/unicode_vocabulary.tfrecord.gz", "testdata/warriors_vocabulary.tfrecord.gz", "testdata/warriors_vocabulary.txt", "testdata/wire_vocabulary.tfrecord.gz", "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"], srcs_version = "PY3", 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"], srcs_version = "PY3", 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 = "PY3", 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 = "PY3", 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", ], )