|
NAMEWrapper for Lingua::Stem::Snowball - Perl interface to Snowball stemmers. PREREQUISITESSnowball - http://snowball.tartarus.org/ Perl module Lingua::Stem::Snowball SYNOPSISuse Search::OpenFTS::Dict::Snowball; my $lang = 'english'; my $s=Search::OpenFTS::Dict::Snowball->new( lang=>$lang ); my $s=Search::OpenFTS::Dict::Snowball->new( lang=>$lang, stop_file=>'/path/to/stop_file' ); my @lexems = $dict->lemms( $word ); my $stop = $dict->is_stoplexem( $lexem ); stop_file should contains space separated unstemmed stop words, for example: the this when
while
DESCRIPTIONAUTHORTeodor Sigaev, teodor@sigaev.ru SEE ALSO Snowball web site http://snowball.tartarus.org/
Lingua::Stem::Snowball http://openfts.sourceforge.net/contributions.shtml
The OpenFTS Primer ( see doc/ subdirectory )
The Crash-course to OpenFTS ( in examples/ subdirectory )
perldoc Search::OpenFTS::Search
perldoc Search::OpenFTS::Index
perldoc Search::OpenFTS::Parser
perldoc Search::OpenFTS::Dict::PorterEng
perldoc Search::OpenFTS::Dict::UnknownDict
perldoc Search::OpenFTS::Morph::ISpell
|