aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/examples/tutorials
diff options
context:
space:
mode:
authorGravatar Neal Wu <wun@google.com>2017-07-31 13:16:22 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-07-31 13:20:09 -0700
commitc215c55d5424fba9e0d10aeea0c1b81c44b10334 (patch)
tree9b598bb5455725764b3fff9a49c444304002fbde /tensorflow/examples/tutorials
parentb663c98991b86fd12d26408c360330f9540038cb (diff)
Add missing py_binary for mnist_deep.py
PiperOrigin-RevId: 163737503
Diffstat (limited to 'tensorflow/examples/tutorials')
-rw-r--r--tensorflow/examples/tutorials/mnist/BUILD12
1 files changed, 12 insertions, 0 deletions
diff --git a/tensorflow/examples/tutorials/mnist/BUILD b/tensorflow/examples/tutorials/mnist/BUILD
index 7a38e8ca97..6d4e67063d 100644
--- a/tensorflow/examples/tutorials/mnist/BUILD
+++ b/tensorflow/examples/tutorials/mnist/BUILD
@@ -82,6 +82,18 @@ py_binary(
],
)
+py_binary(
+ name = "mnist_deep",
+ srcs = [
+ "mnist_deep.py",
+ ],
+ srcs_version = "PY2AND3",
+ deps = [
+ ":input_data",
+ "//tensorflow:tensorflow_py",
+ ],
+)
+
py_test(
name = "fully_connected_feed_test",
size = "small",