Skip to content

Commit 32ab5a5

Browse files
calbertimartinwicke
authored andcommitted
Adding SyntaxNet to tensorflow/models (tensorflow#63)
1 parent 148a15f commit 32ab5a5

File tree

131 files changed

+85250
-2
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

131 files changed

+85250
-2
lines changed

.gitignore

-2
This file was deleted.

.gitmodules

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "tensorflow"]
2+
path = syntaxnet/tensorflow
3+
url = https://github.com/tensorflow/tensorflow.git

syntaxnet/.gitignore

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/bazel-bin
2+
/bazel-genfiles
3+
/bazel-out
4+
/bazel-tensorflow
5+
/bazel-testlogs
6+
/bazel-tf
7+
/bazel-syntaxnet

syntaxnet/README.md

+610
Large diffs are not rendered by default.

syntaxnet/WORKSPACE

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
local_repository(
2+
name = "tf",
3+
path = __workspace_dir__ + "/tensorflow",
4+
)
5+
6+
load('//tensorflow/tensorflow:workspace.bzl', 'tf_workspace')
7+
tf_workspace("tensorflow/", "@tf")
8+
9+
# Specify the minimum required Bazel version.
10+
load("@tf//tensorflow:tensorflow.bzl", "check_version")
11+
check_version("0.2.0")
12+
13+
# ===== gRPC dependencies =====
14+
15+
bind(
16+
name = "libssl",
17+
actual = "@boringssl_git//:ssl",
18+
)
19+
20+
git_repository(
21+
name = "boringssl_git",
22+
commit = "436432d849b83ab90f18773e4ae1c7a8f148f48d",
23+
init_submodules = True,
24+
remote = "https://github.com/mdsteele/boringssl-bazel.git",
25+
)
26+
27+
bind(
28+
name = "zlib",
29+
actual = "@zlib_archive//:zlib",
30+
)
31+
32+
new_http_archive(
33+
name = "zlib_archive",
34+
build_file = "zlib.BUILD",
35+
sha256 = "879d73d8cd4d155f31c1f04838ecd567d34bebda780156f0e82a20721b3973d5",
36+
strip_prefix = "zlib-1.2.8",
37+
url = "http://zlib.net/zlib128.zip",
38+
)

syntaxnet/beam_search_training.png

346 KB
Loading

syntaxnet/ff_nn_schematic.png

194 KB
Loading

syntaxnet/looping-parser.gif

750 KB
Loading

syntaxnet/sawman.png

11 KB
Loading

0 commit comments

Comments
 (0)