Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the best "turnkey" stemming algorithm? [closed]

I need a good stemming algorithm for a project I'm working on. It was suggested that I look at the Porter Stemmer. When I checked out the page on the Porter stemmer I found that it is deprecated now in favor of the "Snowball" stemmer.

I need a good stemmer, but I can't really spend significant time implementing (or optimizing) my own. What is the best "off the shelf", freely available stemmer? Are there any non-free stemmers available for a reasonable price? Or, is the Snowball stemmer my best bet?

like image 650
dicroce Avatar asked Oct 22 '08 16:10

dicroce


1 Answers

The Porter2 stemmer is the one I've decided to go with. It seemed the porter stemmer was the standard, but when I found the page by the author he recommended the "Snowball (Porter2)" stemmer. There is a C port link on this page.

like image 140
dicroce Avatar answered Sep 22 '22 07:09

dicroce