Add missing py_binary for mnist_deep.py

PiperOrigin-RevId: 163737503
This commit is contained in:
Neal Wu 2017-07-31 13:16:22 -07:00 committed by TensorFlower Gardener
parent b663c98991
commit c215c55d54

View File

@ -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",