BUILD 893 Bytes
Newer Older
Lukasz Kaiser's avatar
Lukasz Kaiser 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
py_library(
    name = "data_utils",
    srcs = [
        "data_utils.py",
    ],
    deps = [
        "//file/colossus/public:cns",
        "//third_party/py/numpy",
        "//third_party/py/tensorflow",
    ],
)

py_library(
    name = "neural_gpu",
    srcs = [
        "neural_gpu.py",
    ],
    deps = [
        ":data_utils",
        "//third_party/py/numpy",
        "//third_party/py/tensorflow",
    ],
)

py_binary(
    name = "neural_gpu_trainer",
    srcs = [
        "neural_gpu_trainer.py",
    ],
    launcher = "//devtools/python/launcher",
    malloc = "//tcmalloc:tcmalloc_or_debug",
    deps = [
        ":neural_gpu",
        "//file/colossus/public:cns",
        "//net/proto2/python/public:use_fast_cpp_protos",
        "//third_party/py/Tkinter",
        "//third_party/py/matplotlib",
        "//third_party/py/numpy",
        "//third_party/py/tensorflow",
    ],
)