aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/estimator/BUILD
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2018-04-06 14:32:28 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-04-06 14:35:11 -0700
commitcb43bb37bfd5468efd92b03848edf6f3f06bfd5b (patch)
tree609fe2d71206cba385ea479c72bd15f03b226c13 /tensorflow/contrib/estimator/BUILD
parent3745f2582daeae7a49a129e250cf0cc2d573924a (diff)
Add RNNClassifier
PiperOrigin-RevId: 191941174
Diffstat (limited to 'tensorflow/contrib/estimator/BUILD')
-rw-r--r--tensorflow/contrib/estimator/BUILD55
1 files changed, 55 insertions, 0 deletions
diff --git a/tensorflow/contrib/estimator/BUILD b/tensorflow/contrib/estimator/BUILD
index bec0329ebb..9f4cd44afb 100644
--- a/tensorflow/contrib/estimator/BUILD
+++ b/tensorflow/contrib/estimator/BUILD
@@ -23,6 +23,7 @@ py_library(
":logit_fns",
":multi_head",
":replicate_model_fn",
+ ":rnn",
"//tensorflow/python:util",
],
)
@@ -412,3 +413,57 @@ cuda_py_test(
"notap",
],
)
+
+py_library(
+ name = "rnn",
+ srcs = ["python/estimator/rnn.py"],
+ srcs_version = "PY2AND3",
+ deps = [
+ ":extenders",
+ "//tensorflow/contrib/feature_column:feature_column_py",
+ "//tensorflow/python:array_ops",
+ "//tensorflow/python:check_ops",
+ "//tensorflow/python:framework_ops",
+ "//tensorflow/python:init_ops",
+ "//tensorflow/python:layers",
+ "//tensorflow/python:partitioned_variables",
+ "//tensorflow/python:rnn",
+ "//tensorflow/python:rnn_cell",
+ "//tensorflow/python:summary",
+ "//tensorflow/python:training",
+ "//tensorflow/python:variable_scope",
+ "//tensorflow/python/estimator",
+ "//tensorflow/python/estimator:head",
+ "//tensorflow/python/estimator:optimizers",
+ "//tensorflow/python/feature_column",
+ "@six_archive//:six",
+ ],
+)
+
+py_test(
+ name = "rnn_test",
+ size = "medium",
+ srcs = ["python/estimator/rnn_test.py"],
+ srcs_version = "PY2AND3",
+ tags = [
+ "no_pip",
+ "notsan",
+ ],
+ deps = [
+ ":rnn",
+ "//tensorflow/core:protos_all_py",
+ "//tensorflow/python:check_ops",
+ "//tensorflow/python:client_testlib",
+ "//tensorflow/python:dtypes",
+ "//tensorflow/python:framework_ops",
+ "//tensorflow/python:math_ops",
+ "//tensorflow/python:state_ops",
+ "//tensorflow/python:summary",
+ "//tensorflow/python:training",
+ "//tensorflow/python:variables",
+ "//tensorflow/python/estimator:numpy_io",
+ "//tensorflow/python/feature_column",
+ "//third_party/py/numpy",
+ "@six_archive//:six",
+ ],
+)