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
1
vote
1 answer

How to get Dependency Tree in JSON format in SyntaxNet?

I am trying to get a dependency tree in JSON format from SyntaxNet but all I get from the examples is a Sentence Object which is providing no accessors to access the parsed object or even iterate through the items listed. When I run the examples…
Fr_nkenstien
  • 1,923
  • 7
  • 33
  • 66
1
vote
1 answer

syntaxnet demo.sh hangs when i use text file input

I am trying to use SyntaxNet's demo.sh to tag and parse my own file. Similar to the instructions on https://github.com/tensorflow/models/tree/master/syntaxnet , I added to the context file: input { name: 'my_input' record_format:…
grapefruit
  • 51
  • 2
1
vote
0 answers

How to enable REST api calling into Tensorflow's Syntaxnet

I have installed Tensorflow on Ubuntu linux machine. Followed the following link to install syntax net. https://github.com/tensorflow/models/tree/master/syntaxnet Successfully able to parse a sentence using Syntaxnet using following command. echo…
amadamala
  • 323
  • 1
  • 4
  • 18
1
vote
0 answers

run error://evaluator.py in //dragnn/tools

I hope to run drangg model to predict. I followed the guide but some errors occurred. The run command is as follows: bazel run -c opt <"/home/models/syntaxnet/dragnn/tools/">: evaluator -- \ …
cc jin
  • 21
  • 2
1
vote
1 answer

Step by Step Guide to install Syntaxnet on Window 7 64 bit

Can any body explain the step by step guide to install the Google syntaxtnet framework and the relative dependencies on windows 7 on 64 bit ? Regards samir
Samir Matkar
  • 27
  • 1
  • 5
1
vote
0 answers

DRAGNN local/global training

This is a parameter which present the training ways of syntaxnet models is local or global, however, I can't find the related parameter in the DRAGNN models. Can someone help me?
cc jin
  • 21
  • 2
1
vote
0 answers

Syntaxnet: Can I use my own POS tags?

I have a large corpus and I would like to train my own Syntaxnet model with it. Training the POS tagger yields 0 % accuracy, and I believe it's because my own corpus uses different POS tags. The training generates a tagged corpus using tags like…
Daducica
  • 11
  • 3
1
vote
0 answers

Does syntaxnet support spell checking

I collect lots of words for a specific domain, I can train custom model based on the words. In my usage there are lots of hard copy tables/sheets related to the domain, I will OCR those tables/sheets to structure documents. Anyway the OCR is not…
Kane
  • 8,035
  • 7
  • 46
  • 75
1
vote
1 answer

SyntaxNet: No module named mock

I followed the instructions of installing SyntaxNet here in my Mac OS X Sierra 10.12.3. I installed all the required software: python 2.7 bazel (via brew install bazel) swig (via brew install swig) protocol buffers (via pip install -U…
Raptor
  • 53,206
  • 45
  • 230
  • 366
1
vote
1 answer

Exhausted Virtual Memory Installing SyntaxNet Using Docker Toolbox

I exhausted my virtual memory when trying to install SyntaxNet from this Dockerfile using the Docker Toolbox. I received this message when compiling the Dockerfile: ERROR:…
Mike R
  • 329
  • 2
  • 11
1
vote
0 answers

syntaxnet POS tagger models

I'm trying to make the (romanian) syntaxnet model run on a part of my corpus. I have the unzipped files mapped in a docker container. When i run the script for tokenizing: cat sent.txt | syntaxnet/models/parsey_universal/tokenize.sh…
omu_negru
  • 4,642
  • 4
  • 27
  • 38
1
vote
1 answer

How much data is required to train SyntaxNet?

I know the more data, the better it's but what would be a reasonable amount of data required to train SyntaxNet?
1
vote
1 answer

Command line SyntaxNet demo not working: TypeError: __init__() takes at most 2 arguments (3 given)

I installed SyntaxNet on OS X El Capitan based on their documentation. I am using Python 2.7. When I run the demo, I get error that says TypeError: takes two arguments but 3 given. Any help is appreciated. I am invoking the following command form…
user2161903
  • 577
  • 1
  • 6
  • 22
1
vote
1 answer

Running SyntaxNet with designated instance (in Python-level)

Could you please let me know how I designate which instance to use when training/testing SyntaxNet? In other tensorflow models we can easily change configurations by editing Python code: ex) tf.device('/cpu:0') => tf.device('/gpu:0'). I could run…
J-min
  • 457
  • 4
  • 9
1
vote
2 answers

Syntaxnet / Parsey McParseface declarative sentences only?

I cannot seem to find detail on the the data parsey was trained on; I am assuming it was mostly, if not all, on declarative sentences. If that's true, then Syntaxnet / parsey might not be the solution for imperative sentences, such as instructional…
Azeli
  • 698
  • 7
  • 16
1 2 3
8 9