Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Efficient Lemmatizer that avoids dictionary lookup

I want to convert string like 'eat' to 'eating', 'eats'. I searched and found the lemmatization as the solution, but all the lemmatizer tools that I have come across uses wordlist or dictionary-lookup. Is there any lemmatizer which avoids dictionary lookup and gives high efficiency, may be a lemmatizer that is based on rules. Yes and I am not looking for "stemmer".

like image 850
ameykpatil Avatar asked Dec 12 '11 06:12

ameykpatil


1 Answers

You can try LRBL: a rule-based lemmatizer

It uses the concept of recursive acronyms.

like image 187
Mithun Sasidharan Avatar answered Sep 20 '22 06:09

Mithun Sasidharan