package( default_visibility = ["//tensorflow:internal"], ) licenses(["notice"]) # Apache 2.0 load("//tensorflow:tensorflow.bzl", "py_test") py_library( name = "feature_column_py", srcs = ["feature_column_lib.py"], srcs_version = "PY2AND3", deps = [ ":feature_column", ":feature_column_v2", "//tensorflow/python:util", ], ) py_library( name = "feature_column", srcs = ["feature_column.py"], srcs_version = "PY2AND3", deps = [ "//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: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/keras", "@six_archive//:six", ], ) py_library( name = "feature_column_v2", srcs = ["feature_column_v2.py"], srcs_version = "PY2AND3", deps = [ ":feature_column", "//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: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/keras", "//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/warriors_vocabulary.txt", "testdata/wire_vocabulary.txt", ], ) py_test( name = "feature_column_test", srcs = ["feature_column_test.py"], data = [":vocabulary_testdata"], srcs_version = "PY2AND3", tags = [ "no_cuda_on_cpu_tap", "no_pip", ], 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", ], ) py_test( name = "feature_column_v2_test", srcs = ["feature_column_v2_test.py"], data = [":vocabulary_testdata"], srcs_version = "PY2AND3", tags = [ "no_cuda_on_cpu_tap", "no_pip", ], 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", "//tensorflow/python/estimator:numpy_io", "//third_party/py/numpy", ], )