Can someone help me out with the stanford parser from http://nlp.stanford.edu/software/lex-parser.shtml?

I've only downloaded and unzipped the parser. I've also installed the jython fully but i cannot parse a sentence, it seems like i've installed some modules or something. http://wiki.python.org/jython/InstallationInstructions

>>> import sys
>>> sys.path.append('~/standford-parser-2010-11-30/stanford-parser-2011-11-30.jar')
>>> from java.io import CharArrayReader
>>> from edu.stanford.nlp import *
Traceback (innermost last):
  File "<console>", line 1, in ?
ImportError: no module named edu

Is there more installation procedures other than unzipping it and importing it in jython?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

You have a typo in your sys.append statement. The filename says 2011 when it should be 2010:

import sys
sys.path.append('./stanford-parser-2010-11-30/stanford-parser-2010-11-30.jar')
from edu.stanford.nlp import *
print fsm
<java package edu.stanford.nlp.fsm 1>
link|improve this answer
Thanks samplebias!!! typos.... my bad – 2er0 Mar 9 '11 at 7:49
feedback

You might also look here for some starting off example code.

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.