Stanford Parser is now 'thread-safe' as of version 2.0 (02.03.2012). I am currently running the command line tools and cannot figure out how to make use of my multiple cores by threading the program.

In the past, this question has been answered with "Stanford Parser is not thread-safe", as the FAQ still says. I am hoping to find someone who has had success threading the latest version.

I have tried using -t flag (-t10 and -tLLP) since that was all I could find in my searches, but both throw errors.

An example of a command I issue is:

java -cp stanford-parser.jar edu.stanford.nlp.parser.lexparser.LexicalizedParser \
-outputFormat "oneline" ./grammar/englishPCFG.ser.gz ./corpus > corpus.lex
link|improve this question
feedback

1 Answer

up vote 2 down vote accepted

Sorry, but if you're working from the command-line, at present, we've got nothing for you. (In the future, we may well add to the parser an ability to exploit multiple cores in parsing one sentence, but that's not there at present.) Your only choice (but generally this works well) is to split the input corpus, run several parsers at the same time, each processing one split of sentences, and then to concatenate the resulting parses. Call it "Map-Reduce" if you will. But this worked even before the changes in version 2.0, since each process is completely separate.

The changes in version 2.0 help only if you are writing code to the parser API. What was fixed is you can now simultaneously run as many parsing threads inside one JVM process as you want correctly. You can do this either by getting and using multiple LexicalizedParserQuery objects (via the parserQuery() method) or implicitly by calling apply(...) or parseTree(...) off one LexicalizedParser. Or you can create multiple LexicalizedParser's for different languages.

Multiple LexicalizedparserQuery objects will share the same grammar (LexicalizedParser), but the memory space savings aren't huge, as most of the memory goes to the transient structures used in chart parsing.

p.s. Sorry, yes, some of the documentation still needs updating. But -tLPP is one flag for specifying language-specific resources. The Stanford Parser has no -t flag.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.