Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I looking to use a suite of NLP tools for a personal project, and I was wondering whether Stanford's CoreNLP is easier to use or OpenNLP. Or is there another free package you would reccomend? I haven't really done any NLP before, so I am looking for something that I can quickly use to learn the concepts and prototype my ideas. Any help is appreciated.

share|improve this question

4 Answers

My opinion on which is easier to use is biased, but regarding Ivan Akcheurov's answer, we only released Stanford CoreNLP in Oct 2010, so it isn't very old. Regarding his suggestions, it seems to depend on whether you want to be using a higher-level processing framework or actual processing tools. E.g., if you poke around Knime, it appears that the only NLP components included are actually OpenNLP ones, and most of the machine learning is wrapping Weka.... For groups of individual tools that work together, Stanford NLP, OpenNLP, NLTK, and Lingpipe are perhaps the main choices.

share|improve this answer
Chris, are there any publications which compare the performance/accuracy between Stanford and other open source full parsers (e.g. OpenNLP)? – John Lehmann Feb 2 '12 at 18:55

I suggest you Stanford as it provides the multiple things unser one package that is opensource also e.g. Stanford CoreNLP has

1. StanFord Parser.
2. Stanford POS Tagger. 3. Stanford Named Entity Recognition. 4. Stanford Typed Dependencies. etc.

So in short under one umberella you get multiple Solutions....

share|improve this answer

I suggest you GATE (gate.ac.uk):

GATE

  1. Language: Java
  2. Has UIMA support integrartion
  3. Documentation: Super great documented! Movie tutorials and Training Course
  4. Has GUI
  5. Ability to use WordNet, Lucene, Google, Yahoo, Google Translate, Weka
  6. Has some parts of LingPipe and OpenNLP as a plugin

OpenNLP

  1. Language: Java
  2. SharpNLP (its C-Sharp port)
  3. Has UIMA support integrartion

LingPipe

  1. Language: Java
  2. Documentation: Free book tutorials

NLTK

  1. Language: Python
  2. Documentation: an excellent free book
  3. Corpora: Provides dozen of corpora data (~ 850 MB) and lexicons such as wordnet etc.
share|improve this answer

Libraries you mention are rather old. Personally I don't see the use of OpenNLP nowadays. StanfordNLP software sometimes is used but mostly it is covered by libraries below.

What I would personally suggest to use and definitely advice to take a look at:

NLTK (Python)

Knime (Java + GUI for creating processing pipelines)

GATE (gate.ac.uk) (Java + also nice GUI for regular Text Mining)

share|improve this answer
Thanks for the answer. I checked out Knime, but it seems to me more than what I want to do now. Will check out the others too - thanks! – Pratik Thaker Jul 22 '11 at 21:10
OpenNLP is being incubated at apache: incubator.apache.org/opennlp – tommy chheng Sep 15 '11 at 2:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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