Stemming is something that's needed in tagging systems. I use delicious, and I don't have time to manage and prune my tags. I'm a bit more careful with my blog, but it isn't perfect. I write software for embedded systems that would be much more functional (helpful to the user) if they included stemming.

For instance:
Parse
Parser
Parsing

Should all mean the same thing to whatever system I'm putting them into.

Ideally there's a BSD licensed stemmer somewhere, but if not, where do I look to learn the common algorithms and techniques for this?

Aside from BSD stemmers, what other open source licensed stemmers are out there?

link|improve this question

Someone needs to add snowball.tartarus.org as an answer (hint, hint) ... – Adam Davis Feb 27 '09 at 15:01
Hehe, strippergram – Nerdling Feb 27 '09 at 15:02
But I'd like to see others, and specifically more information about the algorithms used. – Adam Davis Feb 27 '09 at 15:02
FYI: Snowball has a package of their algorithms available for download. – Nerdling Feb 27 '09 at 15:03
@Adam: I was getting there :) – Jon Skeet Feb 27 '09 at 15:07
feedback

4 Answers

up vote 4 down vote accepted

Snowball stemmer (C & Java) I've used it's Python binding, PyStemmer

link|improve this answer
feedback

Check out the nltk toolkit written in python. It has a very functional stemmer.

link|improve this answer
feedback

Another option for stemming would be WordNet, along with one of its APIs. Some basic information on stemming and lemmatization, including a description of the Porter stemming algorithm, can be found online in Introduction to Information Retrieval.

link|improve this answer
feedback

Lucene has a stemmer in, I believe (and IIRC it lets you use your own one if you want).

EDIT: Just checked, and Lucence refers to the Snowball site which is an open source stemming library as far as I can tell.

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.