stemming

Python implementations of various stemming algorithms
Download

stemming Ranking & Summary

Advertisement

  • Rating:
  • License:
  • Public Domain
  • Price:
  • FREE
  • Publisher Name:
  • Matt Chaput
  • Publisher web site:
  • http://whoosh.ca

stemming Tags


stemming Description

Python implementations of various stemming algorithms stemming is a Python implementations of the Porter, Paice-Husk, Porter2 and Lovins stemming algorithms for English. These implementations are straightforward and efficient, unlike some Python versions of the same algorithms available on the Web. This package is an extraction of the stemming code included in the Whoosh search engine.Note that these are pure Python implementations. Python wrappers for, e.g. the Snoball stemmers and the C implementation of the Porter stemmer are available on PyPI and will be faster if using compiled code is an option for you.Stemming algorithms attempt to automatically remove suffixes (and in some cases prefixes) in order to find the "root word" or stem of a given word. This is useful in various natural language processing scenarios, such as search.In general porter2 is the best overall stemming algorithm, but not necessarily the fastest or most aggressive.The stemming package contains modules for each algorithm (lovins, paicehusk, porter, and porter2). Each module contains a stem() function:>> from stemming.porter2 import stem>> stem("factionally")faction(The Paice-Husk algorithm allows custom stemming rule sets, so the paicehusk module also includes a PaiceHuskStemmer class you can instantiate with custom rules.)The source code for this package is available on BitBucket:http://bitbucket.org/mchaput/stemmingPlease use BitBucket to file bug reports or feature requests:http://bitbucket.org/mchaput/stemming/issues/ Requirements: · Python


stemming Related Software