| Home | Trees | Indices | Help |
|
|---|
|
|
object --+
|
api.StemmerI --+
|
_LanguageSpecificStemmer --+
|
HungarianStemmer
The Hungarian Snowball stemmer.
Note: A detailed description of the Hungarian stemming algorithm can be found under http://snowball.tartarus.org/algorithms /hungarian/stemmer.html.
|
|||
unicode
|
|
||
unicode
|
|
||
|
Inherited from |
|||
|
|||
unicode
|
__vowels = The Hungarian vowels. |
||
tuple
|
__digraphs = The Hungarian digraphs. |
||
tuple
|
__double_consonants = The Hungarian double consonants. |
||
tuple
|
__step1_suffixes = Suffixes to be deleted in step 1 of the algorithm. |
||
tuple
|
__step2_suffixes = Suffixes to be deleted in step 2 of the algorithm. |
||
tuple
|
__step3_suffixes = Suffixes to be deleted in step 3 of the algorithm. |
||
tuple
|
__step4_suffixes = Suffixes to be deleted in step 4 of the algorithm. |
||
tuple
|
__step5_suffixes = Suffixes to be deleted in step 5 of the algorithm. |
||
tuple
|
__step6_suffixes = Suffixes to be deleted in step 6 of the algorithm. |
||
tuple
|
__step7_suffixes = Suffixes to be deleted in step 7 of the algorithm. |
||
tuple
|
__step8_suffixes = Suffixes to be deleted in step 8 of the algorithm. |
||
tuple
|
__step9_suffixes = Suffixes to be deleted in step 9 of the algorithm. |
||
|
|||
Stem an Hungarian word and return the stemmed form.
|
Return the region R1 that is used by the Hungarian stemmer. If the word begins with a vowel, R1 is defined as the region after the first consonant or digraph (= two letters stand for one phoneme) in the word. If the word begins with a consonant, it is defined as the region after the first vowel in the word. If the word does not contain both a vowel and consonant, R1 is the null region at the end of the word.
Note: This helper method is invoked by the stem method of the subclass HungarianStemmer. It is not to be invoked directly! |
|
|||
__digraphsThe Hungarian digraphs.
|
__double_consonantsThe Hungarian double consonants.
|
__step2_suffixesSuffixes to be deleted in step 2 of the algorithm.
|
__step4_suffixesSuffixes to be deleted in step 4 of the algorithm.
|
__step6_suffixesSuffixes to be deleted in step 6 of the algorithm.
|
__step7_suffixesSuffixes to be deleted in step 7 of the algorithm.
|
__step8_suffixesSuffixes to be deleted in step 8 of the algorithm.
|
__step9_suffixesSuffixes to be deleted in step 9 of the algorithm.
|
| Home | Trees | Indices | Help |
|
|---|
| Generated by Epydoc 3.0.1 on Mon Apr 11 14:39:52 2011 | http://epydoc.sourceforge.net |