-
Notifications
You must be signed in to change notification settings - Fork 203
/
BUILD
69 lines (59 loc) · 1.2 KB
/
BUILD
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
# cription:
# Example conversation chatbot model
package(default_visibility = ["//visibility:public"])
py_library(
name = "tf_seq2seq",
srcs = [
"tf_seq2seq_chatbot/configs/config.py",
"tf_seq2seq_chatbot/lib/data_utils.py",
"tf_seq2seq_chatbot/lib/chat.py",
"tf_seq2seq_chatbot/lib/predict.py",
"tf_seq2seq_chatbot/lib/seq2seq_model.py",
"tf_seq2seq_chatbot/lib/seq2seq_model_utils.py",
"tf_seq2seq_chatbot/lib/train.py"
],
deps = [
"//tensorflow:tensorflow_py",
],
)
py_binary(
name = "train",
srcs = [
"train.py",
],
deps = [
"//tensorflow:tensorflow_py",
":tf_seq2seq"
],
)
py_binary(
name = "test",
srcs = [
"test.py",
],
deps = [
"//tensorflow:tensorflow_py",
":tf_seq2seq"
],
)
py_binary(
name = "chat",
srcs = [
"chat.py",
],
deps = [
"//tensorflow:tensorflow_py",
":tf_seq2seq"
],
)
filegroup(
name = "all_files",
srcs = glob(
["**/*"],
exclude = [
"**/METADATA",
"**/OWNERS",
],
),
visibility = ["//tensorflow:__subpackages__"],
)