Package nltk :: Package stem :: Module rslp :: Class RSLPStemmer
[hide private]
[frames] | no frames]

Class RSLPStemmer

source code

  object --+    
           |    
api.StemmerI --+
               |
              RSLPStemmer

A stemmer for Portuguese.

Instance Methods [hide private]
 
__init__(self)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
source code
 
read_rule(self, filename) source code
 
stem(self, word)
Strip affixes from the token and return the stem.
source code
 
apply_rule(self, word, rule_index) source code

Inherited from object: __delattr__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __str__

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self)
(Constructor)

source code 

x.__init__(...) initializes x; see x.__class__.__doc__ for signature

Overrides: object.__init__
(inherited documentation)

stem(self, word)

source code 

Strip affixes from the token and return the stem.

Parameters:
  • token - The token that should be stemmed.
Overrides: api.StemmerI.stem
(inherited documentation)