aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/examples/tutorials/layers/BUILD
blob: aad78b18409bab1fe6924849ec5b61c6f3a052f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Example Estimator model

package(
    default_visibility = ["//visibility:public"],
)

licenses(["notice"])  # Apache 2.0

exports_files(["LICENSE"])

py_binary(
    name = "cnn_mnist",
    srcs = [
        "cnn_mnist.py",
    ],
    srcs_version = "PY2AND3",
    deps = [
        "//tensorflow:tensorflow_py",
        "//third_party/py/numpy",
    ],
)