I started to use the Stanford parser a few weeks ago and it surely is a great tool. However, I would like using it in another language not already implemented. I looked on the website but found nothing that could help me with that. I guess what I have to do is "just" create a new languagePCFG.ser but to do that? Also, if anyone knows if French and Spanish are supposed to be released?

link|improve this question
This would be an excellent question for bit.ly/u4lZUG. – eowl Dec 7 '11 at 14:37
feedback

1 Answer

up vote 1 down vote accepted

Several things are needed:

  • You need a treebank (set of hand-parsed trees) from which the probabilities used in the parser are calculated
  • You need language-specific files (like xLanguagePack, xTreebankParserParams, which specify things about the language, treebank encoding, and parsing options
  • You then train the parser on the treebank to produce the grammar file (see makeSerialized.csh in the distribution)
  • You might need a language-specific tokenizer to divide text into tokens
  • If you want Stanford Dependencies output, then there is also a rule-based layer that defines the dependencies

A French model is now included in the most recent distribution (2011-09-14). There are not any current plans for Spanish, though it all depends on the availability of resources and enthusiastic people.

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.