Stemming - code examples or open source projects?

前端 未结 4 1877
小鲜肉
小鲜肉 2020-12-29 01:14

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

相关标签:
4条回答
  • 2020-12-29 01:22

    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.

    0 讨论(0)
  • 2020-12-29 01:25

    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.

    0 讨论(0)
  • 2020-12-29 01:26

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

    0 讨论(0)
  • 2020-12-29 01:37

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

    0 讨论(0)
提交回复
热议问题