aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/seq2seq/BUILD
diff options
context:
space:
mode:
authorGravatar Eugene Brevdo <ebrevdo@google.com>2017-02-13 22:56:58 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-02-13 23:04:58 -0800
commitd46937f3684d3be2285f7401c2f471f542d147c2 (patch)
treefc6f76a885fa8433760fbe6e06a4c9cd17da1f74 /tensorflow/contrib/seq2seq/BUILD
parent3aca494186c94090cdac7796694558907c3e0b5e (diff)
Remove complicated decoder API in favor of new object-oriented API in tf.contrib.seq2seq.
1. Expose the new classes and functions in tf.contrib.seq2seq 2. Delete old functions 3. Rename dynamic_decode_rnn -> dynamic_decode Change: 147436900
Diffstat (limited to 'tensorflow/contrib/seq2seq/BUILD')
-rw-r--r--tensorflow/contrib/seq2seq/BUILD32
1 files changed, 0 insertions, 32 deletions
diff --git a/tensorflow/contrib/seq2seq/BUILD b/tensorflow/contrib/seq2seq/BUILD
index d5a9dcdce1..26274380b9 100644
--- a/tensorflow/contrib/seq2seq/BUILD
+++ b/tensorflow/contrib/seq2seq/BUILD
@@ -30,18 +30,6 @@ py_library(
)
cuda_py_test(
- name = "decoder_fn_test",
- size = "medium",
- srcs = ["python/kernel_tests/decoder_fn_test.py"],
- additional_deps = [
- ":seq2seq_py",
- "//tensorflow/python:client_testlib",
- "//tensorflow/python:framework_test_lib",
- "//tensorflow/python:platform_test",
- ],
-)
-
-cuda_py_test(
name = "loss_test",
size = "medium",
srcs = ["python/kernel_tests/loss_test.py"],
@@ -60,26 +48,6 @@ cuda_py_test(
)
cuda_py_test(
- name = "seq2seq_test",
- size = "medium",
- srcs = ["python/kernel_tests/seq2seq_test.py"],
- additional_deps = [
- ":seq2seq_py",
- "//tensorflow/contrib/layers:layers_py",
- "//tensorflow/contrib/rnn:rnn_py",
- "//tensorflow/python:array_ops",
- "//tensorflow/python:client_testlib",
- "//tensorflow/python:framework_for_generated_wrappers",
- "//tensorflow/python:framework_test_lib",
- "//tensorflow/python:init_ops",
- "//tensorflow/python:platform_test",
- "//tensorflow/python:rnn",
- "//tensorflow/python:variable_scope",
- "//tensorflow/python:variables",
- ],
-)
-
-cuda_py_test(
name = "basic_decoder_test",
size = "medium",
srcs = ["python/kernel_tests/basic_decoder_test.py"],