aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/examples/eager/spinn/BUILD
blob: 0e39d4696fb5b4efafc94b4b96965d232ae4e473 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
licenses(["notice"])  # 3-clause BSD.

py_binary(
    name = "spinn",
    srcs = ["spinn.py"],
    srcs_version = "PY2AND3",
    visibility = ["//visibility:public"],
    deps = [
        "//tensorflow:tensorflow_py",
        "//tensorflow/contrib/eager/python:tfe",
        "//tensorflow/contrib/eager/python/examples/spinn:data",
        "@six_archive//:six",
    ],
)