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

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

licenses(["notice"])  # Apache 2.0

exports_files(["LICENSE"])

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