Questions tagged [syntaxnet]

SyntaxNet, an open-source neural network framework implemented in TensorFlow that provides a foundation for Natural Language Understanding (NLU) systems.

How does SyntaxNet work?

SyntaxNet is a framework for what’s known in academic circles as a syntactic parser, which is a key first component in many NLU systems. Given a sentence as input, it tags each word with a part-of-speech (POS) tag that describes the word's syntactic function, and it determines the syntactic relationships between words in the sentence, represented in the dependency parse tree. These syntactic relationships are directly related to the underlying meaning of the sentence in question.

Announcing SyntaxNet: The World’s Most Accurate Parser Goes Open Source

Source Code on Github

126 questions
0
votes
1 answer

training SyntaxNet from parser_trainer_test.sh (ImportError: cannot import name tf_logging)

I am new to python and SyntaxNet and I am trying to train SyntaxNet from SyntaxNet Tutorial. To trained the model I updated parser_trainer_test.sh based on The Tutorial. and ran it as follow: ubuntu@ubuntu-VirtualBox:~/models/syntaxnet$…
Nazanin Tajik
  • 412
  • 2
  • 15
0
votes
2 answers

Bazel Build for Syntaxnet returns failure

I am following the steps from Github repository of syntaxnet After running bazel test syntaxnet/... util/utf8/... I am getting the following error: ERROR: Error downloading…
0
votes
2 answers

Install error when bazel is built for syntaxnet

I am trying to run Syntaxnet on my computer but got stuck at the part of bazel installation. When i executed "bazel test syntaxnet/... util/utf8/...", all test targets were skipped. The error codes are as below. Thanks.
Bu-gae Park
  • 225
  • 1
  • 9
0
votes
1 answer

Bazel build fails with "Executing genrule @six_archive//:copy_six failed" error while building syntaxnet

I'm trying to follow the instructions at syntaxnet's github page to build syntaxnet parser models. My system is a Debian Wheezy. Shouldn't be very different from Ubuntu 14.04 LTS or 15.05. I have compiled bazel 0.2.2 (as opposed to 0.2.2b) from…
Cosimo
  • 2,846
  • 1
  • 24
  • 26
-1
votes
2 answers

looking for a pre-trained syntaxnet program

I was just wondering if anyone has a pre-trained model for syntaxnet. We are trying to save as much time as possible and this would be really helpful. Cheers.
Matt
  • 71
  • 1
  • 4
-1
votes
1 answer

How to use --word_embeddings option of syntaxnet

I am studying Syntaxnet of Tensoflow. Howerver, I'm confusing about the way to use --word_embeddings option. Could you show me a example? Thanks a lot.
Yang W
  • 1
1 2 3
8
9