views:

64

answers:

1

I have tried using a stemmer but the words it produces are just not upto the mark. It could be great if you could let me know any lemmatizer script there exists for ruby or a lemmatizer gem or an SQL query that bundles out the lemma of a word in the wordnet database. Cheers !

A: 

The following is a Porter Stemmer, should behave as you expect: http://stemmer.rubyforge.org/wiki/wiki.pl?HomePage

Install with gem install stemmer.

Alternatively, you can try http://github.com/aurelian/ruby-stemmer - this also has links to additional gems to try.

laust.rud