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
4
votes
0 answers

How to determine if a sentence is an instruction (imperative)?

I would like to identify if a given sentence is imperative, ie it contains an instruction for someone to do something. Eg: (Please) (Would be great if you could) Send me the PDF I asked for (I request you to) (Please) Submit your resignation…
sohels
  • 149
  • 6
4
votes
0 answers

Using Syntaxnet with TensorFlow Serving

I try to use Syntaxnet with TensorFlow Serving. I found this link here . I try to run the script to launch the server: # you can create a shell script with content below! git clone https://github.com/dsindex/syntaxnet.git work cd work git clone…
David
  • 311
  • 1
  • 4
  • 14
4
votes
1 answer

How to test SyntaxNet trained model (Spanish UD)?

Training my own SyntaxNet model for Spanish-Ancora UD corpus following the instructions from here did not give me errors. After all the steps the final files it creates were: -category-map -char-map -checkpoint -context -graph -label-map …
Octavio Soto
  • 781
  • 9
  • 13
4
votes
1 answer

Syntaxnet Turkish Language Data Set Non Existent Map Files

I am new to Syntaxnet and i tried to use pre-trained model of Turkish language through the instructions here Point-1 : Although I set the MODEL_DIRECTORY environment variable, tokenize.sh didn't find the related path and it gives error like below…
ehangul
  • 43
  • 2
4
votes
2 answers

Creating Symbolic link fails

I am trying to upgrade glibcxx on my CentOS 6.7 machine. I did the steps as given here. Now, when I do: strings /opt/google/chrome/lib/libstdc++.so.6 | grep GLIBC I have GLIBCXX_3.4 to GLIBCXX_3.4.22 listed. To use this file in my Syantaxnet…
kskp
  • 692
  • 5
  • 11
  • 23
4
votes
1 answer

parsing python asciitree output and print 'labelled bracket notation'

Google SyntaxNet gives an output like .. saw VBD ROOT +-- Alice NNP nsubj | +-- , , punct | +-- reading VBG rcmod | +-- who WP nsubj | +-- had VBD aux | +-- been VBN aux | +-- about IN prep | +--…
CPUU
  • 71
  • 2
  • 7
4
votes
2 answers

Why SyntaxNet demo.sh is not finding correct imports?

I went through https://github.com/tensorflow/models/tree/master/syntaxnet and did everything it says. I ran this to test: bazel test --linkopt=-headerpad_max_install_names \ syntaxnet/... util/utf8/... I could only make 6 test pass and 6…
Rajan
  • 81
  • 5
3
votes
0 answers

How to edit the linker flags bazel uses to build syntaxnet/tensorflow

I don't get Tensorflow with Syntaxnet built with CUDA on Ubuntu 16.04. I have built it successfully without CUDA on this system. Most likely the error is rooted in the configuration. The bazel build of tensorflow with CUDA generates linker commands…
3
votes
0 answers

How to run Dragnn framework (TensorFlow)?

I have been dealing with some NLP tools (TINT, UDPIPE,Syntaxnet..). I was able to run the basic Syntaxnet NLP framework from commandline, but I really can't understand how to run Dragnn. I just want a complete .conll format given a plain text (like…
Plates
  • 49
  • 5
3
votes
1 answer

How to process tree that i got from syntaxnet?(conll format)

I guess that i need Semgrex from edu.stanford.nlp package. For this task i need to construct Tree from edu.stanford.nlp.trees.Tree and process that tree like import edu.stanford.nlp.semgraph.semgrex.SemgrexMatcher; import…
Tropin
  • 53
  • 6
3
votes
0 answers

Syntaxnet C++ Api

I have installed Syntaxnet and parsed few example files. I am planning to create a C++ application which uses Syntaxnet to parse the input document. I searched to find if I could use the Syntaxnet Net C++ API, but i couldn't find one. Can any one…
H414
  • 71
  • 8
3
votes
0 answers

Dependency tree with word, POS tag, relation from CoNLL input

I try to have a dependency tree from CoNLL input using the NLTK DependencyGraph. What I understood is that this class provides a tree() method that build tree structure for dependency without the relation between head and dependents. The tree has no…
David
  • 311
  • 1
  • 4
  • 14
3
votes
1 answer

Get output from SyntaxNet as python object, not text

After executing some of an example syntaxnet scripts(like parse.sh) I receive output in text-conll format. My goal is to take some features and proceed them to next network. One possible choice is to parse text output with something like…
3
votes
1 answer

Running Syntaxnet on Windows

Is there a way to get Syntaxnet running on Windows 8. I am new to Syntaxnet and Tensorflow ecosystem. Any suggestion is welcome. Thank you.
David
  • 311
  • 1
  • 4
  • 14
3
votes
2 answers

How to deploy parsey's cousins with tensorflow serving

Are there instructions or some documentation somewhere or could somebody describe how to deploy the models available as "Parsey's Cousins" (see https://github.com/tensorflow/models/blob/master/syntaxnet/universal.md) with SyntaxNet under Tensorflow…
jpp1
  • 2,019
  • 3
  • 22
  • 43
1
2
3
8 9