«
class documentation

This helper subclass offers the possibility to invoke a specific stemmer directly. This is useful if you already know the language to be stemmed at runtime.

Create an instance of the Snowball stemmer.

Parameters
ignore_stopwordsIf set to True, stopwords are not stemmed and returned unchanged. Set to False by default.
Method __init__ Undocumented
Method __repr__ Print out the string representation of the respective class.
Instance Variable stopwords Undocumented

Inherited from StemmerI:

Method stem Strip affixes from the token and return the stem.
def __init__(self, ignore_stopwords=False): (source)

Undocumented

def __repr__(self): (source)

Print out the string representation of the respective class.

stopwords = (source)

Undocumented