Skip to content

Commit

Permalink
Adding SyntaxNet to tensorflow/models (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
calberti authored and martinwicke committed May 12, 2016
1 parent 148a15f commit 32ab5a5
Show file tree
Hide file tree
Showing 131 changed files with 85,250 additions and 2 deletions.
2 changes: 0 additions & 2 deletions .gitignore

This file was deleted.

3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "tensorflow"]
path = syntaxnet/tensorflow
url = https://github.com/tensorflow/tensorflow.git
7 changes: 7 additions & 0 deletions syntaxnet/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
/bazel-bin
/bazel-genfiles
/bazel-out
/bazel-tensorflow
/bazel-testlogs
/bazel-tf
/bazel-syntaxnet
610 changes: 610 additions & 0 deletions syntaxnet/README.md

Large diffs are not rendered by default.

38 changes: 38 additions & 0 deletions syntaxnet/WORKSPACE
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
local_repository(
name = "tf",
path = __workspace_dir__ + "/tensorflow",
)

load('//tensorflow/tensorflow:workspace.bzl', 'tf_workspace')
tf_workspace("tensorflow/", "@tf")

# Specify the minimum required Bazel version.
load("@tf//tensorflow:tensorflow.bzl", "check_version")
check_version("0.2.0")

# ===== gRPC dependencies =====

bind(
name = "libssl",
actual = "@boringssl_git//:ssl",
)

git_repository(
name = "boringssl_git",
commit = "436432d849b83ab90f18773e4ae1c7a8f148f48d",
init_submodules = True,
remote = "https://github.com/mdsteele/boringssl-bazel.git",
)

bind(
name = "zlib",
actual = "@zlib_archive//:zlib",
)

new_http_archive(
name = "zlib_archive",
build_file = "zlib.BUILD",
sha256 = "879d73d8cd4d155f31c1f04838ecd567d34bebda780156f0e82a20721b3973d5",
strip_prefix = "zlib-1.2.8",
url = "http://zlib.net/zlib128.zip",
)
Binary file added syntaxnet/beam_search_training.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added syntaxnet/ff_nn_schematic.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added syntaxnet/looping-parser.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added syntaxnet/sawman.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 32ab5a5

Please sign in to comment.