We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e9e15a commit c705568Copy full SHA for c705568
tutorials/rnn/ptb/BUILD
@@ -36,6 +36,13 @@ py_test(
36
],
37
)
38
39
+py_library(
40
+ name = "util",
41
+ srcs = ["util.py"],
42
+ srcs_version = "PY2AND3",
43
+ deps = ["//tensorflow:tensorflow_py"],
44
+)
45
+
46
py_binary(
47
name = "ptb_word_lm",
48
srcs = [
@@ -44,7 +51,8 @@ py_binary(
51
srcs_version = "PY2AND3",
52
deps = [
53
":reader",
- "//tensorflow:tensorflow_py",
54
+ ":util",
55
+ "//tensorflow:tensorflow_py,
56
49
57
50
58
tutorials/rnn/ptb/__init__.py
@@ -19,3 +19,4 @@
19
from __future__ import print_function
20
21
import reader
22
+import util
0 commit comments