BUILD 1.76 KB
Newer Older
Martin Wicke's avatar
Martin Wicke 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
# Description:
#   Contains the operations and nets for building TensorFlow-Slim models.

package(default_visibility = ["//inception:internal"])

licenses(["notice"])  # Apache 2.0

exports_files(["LICENSE"])

py_library(
    name = "scopes",
    srcs = ["scopes.py"],
    deps = [
        "@tf//tensorflow:tensorflow_py",
    ],
)

py_test(
    name = "scopes_test",
    size = "small",
    srcs = ["scopes_test.py"],
    deps = [
        ":scopes",
    ],
)

py_library(
    name = "variables",
    srcs = ["variables.py"],
    deps = [
        "@tf//tensorflow:tensorflow_py",
        ":scopes",
    ],
)

py_test(
    name = "variables_test",
    size = "small",
    srcs = ["variables_test.py"],
    deps = [
        ":variables",
    ],
)

py_library(
    name = "losses",
    srcs = ["losses.py"],
    deps = [
        "@tf//tensorflow:tensorflow_py",
    ],
)

py_test(
    name = "losses_test",
    size = "small",
    srcs = ["losses_test.py"],
    deps = [
        ":losses",
    ],
)

py_library(
    name = "ops",
    srcs = ["ops.py"],
    deps = [
        "@tf//tensorflow:tensorflow_py",
        ":losses",
        ":scopes",
        ":variables",
    ],
)

py_test(
    name = "ops_test",
    size = "small",
    srcs = ["ops_test.py"],
    deps = [
        ":ops",
        ":variables",
    ],
)

py_library(
    name = "inception",
    srcs = ["inception_model.py"],
    deps = [
        "@tf//tensorflow:tensorflow_py",
        ":ops",
        ":scopes",
    ],
)

py_test(
    name = "inception_test",
    size = "medium",
    srcs = ["inception_test.py"],
    deps = [
        ":inception",
    ],
)

py_library(
    name = "slim",
    srcs = ["slim.py"],
    deps = [
        ":inception",
        ":losses",
        ":ops",
        ":scopes",
        ":variables",
    ],
)