BUILD 776 Bytes
Newer Older
Victor Carbune's avatar
Victor Carbune committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Description:
# Example classification model on Quick, Draw! dataset.

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

licenses(["notice"])  # Apache 2.0

exports_files(["LICENSE"])

py_binary(
    name = "train_model",
    srcs = [
        "train_model.py",
    ],
    srcs_version = "PY2AND3",
    deps = [
        "//third_party/py/tensorflow",
    ],
)

py_binary(
    name = "create_dataset",
    srcs = [
        "create_dataset.py",
    ],
    deps = [
        "//third_party/py/numpy",
        "//third_party/py/tensorflow",
    ],
)

filegroup(
    name = "all_files",
    srcs = glob(
        ["**/*"],
        exclude = [
            "**/METADATA",
            "**/OWNERS",
        ],
    ),
    visibility = ["//third_party/tensorflow:__subpackages__"],
)