I have tried using OpenNLP Tools 1.5 from SourceForge for getting the Named Entites from a text. I did find a JWNL file in the OpenNLP download. Does that imply that OpenNLP in turn is using WordNet for the Named Entity Recognition. (Specifically, does it mean that the Name Model files were generated with WordNet) ?

link|improve this question

48% accept rate
feedback

2 Answers

up vote 1 down vote accepted

No, OpenNLP only uses WordNet for co-reference resolution, such as correlating "He" to "Steve Jones" in separate sentences.

WordNet is not used in Named Entity Recognition. The named entity training files are manually annotated fields from various conferences/tests, such as CoNLL.

Source: http://opennlp.sourceforge.net/README.html

link|improve this answer
feedback

As I know OpenNLP use maximum entropy package to provide all their statistical models - pos tagging, sentence detection, NER even tokenization. Wordnet integration is not part of OpenNLP so I think its features were not used in training models.

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.