forked from tensorflow/models
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD
64 lines (54 loc) · 1.04 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
package(default_visibility = [":internal"])
licenses(["notice"]) # Apache 2.0
exports_files(["LICENSE"])
package_group(
name = "internal",
packages = [
"//textsum/...",
],
)
py_library(
name = "seq2seq_attention_model",
srcs = ["seq2seq_attention_model.py"],
deps = [
":seq2seq_lib",
],
)
py_library(
name = "seq2seq_lib",
srcs = ["seq2seq_lib.py"],
)
py_binary(
name = "seq2seq_attention",
srcs = ["seq2seq_attention.py"],
deps = [
":batch_reader",
":data",
":seq2seq_attention_decode",
":seq2seq_attention_model",
],
)
py_library(
name = "batch_reader",
srcs = ["batch_reader.py"],
deps = [
":data",
":seq2seq_attention_model",
],
)
py_library(
name = "beam_search",
srcs = ["beam_search.py"],
)
py_library(
name = "seq2seq_attention_decode",
srcs = ["seq2seq_attention_decode.py"],
deps = [
":beam_search",
":data",
],
)
py_library(
name = "data",
srcs = ["data.py"],
)