|
NAMELingua::Stem::Ru - Porter's stemming algorithm for Russian (KOI8-R only)SYNOPSISuse Lingua::Stem::Ru; my $stems = Lingua::Stem::Ru::stem({ -words => $word_list_reference, -locale => 'ru', -exceptions => $exceptions_hash, }); my $stem = Lingua::Stem::Ru::stem_word( $word ); DESCRIPTIONThis module applies the Porter Stemming Algorithm to its parameters, returning the stemmed words.The algorithm is implemented exactly as described in: http://snowball.tartarus.org/algorithms/russian/stemmer.html The code is carefully crafted to work in conjunction with the Lingua::Stem module by Benjamin Franz. This stemmer is also based on the work of Aldo Capini, see Lingua::Stem::It. METHODS
EXPORTNone by default.AUTHORAleksandr Guidrevitch <pillgrim@mail.ru>REPOSITORY<https://github.com/neilb/Lingua-Stem-Ru>SEE ALSO
COPYRIGHT AND LICENSECopyright (C) 2003 by Aldo Calpini <dada@perl.it>Copyright (C) 2004 by Aleksandr Guidrevitch <pillgrim@mail.ru> This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
Visit the GSP FreeBSD Man Page Interface. |