up vote 4 down vote favorite
share [g+] share [fb]

I am looking for a lemmatisation implementation for English in Java. I found a few already, but I need something that does not need to much memory to run (1 GB top). Thanks. I DO NOT NEED A STEMMER.

link|improve this question
Do you need true lemmatization (usually requires a decent-sized list of words), or is a stemmer like Porter, Snowball, or Paice-Husk good enough? – erickson Oct 16 '09 at 14:00
@erickson - Do you know any true lemmatization (list of words)? I need it if there is any. – JohnS Jun 10 '11 at 13:49
@JohnS - The best English word list I have found is the one developed by players of the word game Scrabble, OWL2. Unfortunately, it is not "open". That, in conjunction with something like WordNet, might serve as the basis for a good lemmatizer. But I don't know of anyone who has done it. – erickson Jun 10 '11 at 17:10
feedback

3 Answers

Check out Lucene Snowball.

link|improve this answer
the link is broken – seinecle Dec 28 '11 at 16:23
feedback

The Stanford CoreNLP Java library contains a lemmatizer that is a little resource intensive but I have run it on my laptop with <512MB of RAM.

link|improve this answer
feedback

There is a JNI to hunspell, which is the checker used in open office and FireFox. http://hunspell.sourceforge.net/

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.