| Home | Trees | Indices | Help |
|
|---|
|
|
object --+
|
api.StemmerI --+
|
_LanguageSpecificStemmer --+
|
RussianStemmer
The Russian Snowball stemmer.
Note: A detailed description of the Russian stemming algorithm can be found under http://snowball.tartarus.org/algorithms /russian/stemmer.html.
|
|||
unicode
|
|
||
tuple
|
|
||
unicode
|
|
||
unicode
|
|
||
|
Inherited from |
|||
|
|||
tuple
|
__perfective_gerund_suffixes = Suffixes to be deleted. |
||
tuple
|
__adjectival_suffixes = Suffixes to be deleted. |
||
tuple
|
__reflexive_suffixes = Suffixes to be deleted. |
||
tuple
|
__verb_suffixes = Suffixes to be deleted. |
||
tuple
|
__noun_suffixes = Suffixes to be deleted. |
||
tuple
|
__superlative_suffixes = Suffixes to be deleted. |
||
tuple
|
__derivational_suffixes = Suffixes to be deleted. |
||
|
|||
Stem a Russian word and return the stemmed form.
|
Return the regions RV and R2 which are used by the Russian stemmer. In any word, RV is the region after the first vowel, or the end of the word if it contains no vowel. R2 is the region after the first non-vowel following a vowel in R1, or the end of the word if there is no such non-vowel. R1 is the region after the first non-vowel following a vowel, or the end of the word if there is no such non-vowel.
Note: This helper method is invoked by the stem method of the subclass RussianStemmer. It is not to be invoked directly! |
Transliterate a Russian word into the Roman alphabet. A Russian word whose letters consist of the Cyrillic alphabet are transliterated into the Roman alphabet in order to ease the forthcoming stemming process.
Note: This helper method is invoked by the stem method of the subclass RussianStemmer. It is not to be invoked directly! |
Transliterate a Russian word back into the Cyrillic alphabet. A Russian word formerly transliterated into the Roman alphabet in order to ease the stemming process, is transliterated back into the Cyrillic alphabet, its original form.
Note: This helper method is invoked by the stem method of the subclass RussianStemmer. It is not to be invoked directly! |
|
|||
__perfective_gerund_suffixesSuffixes to be deleted.
|
__adjectival_suffixesSuffixes to be deleted.
|
__verb_suffixesSuffixes to be deleted.
|
__noun_suffixesSuffixes to be deleted.
|
| Home | Trees | Indices | Help |
|
|---|
| Generated by Epydoc 3.0.1 on Mon Apr 11 14:39:52 2011 | http://epydoc.sourceforge.net |