1Lingua::Stem::Pt(3)   User Contributed Perl Documentation  Lingua::Stem::Pt(3)
2
3
4

NAME

6       Lingua::Stem::Pt - Stemming algorithm for Portuguese
7

SYNOPSIS

9           use Lingua::Stem::Pt;
10           my $stems   = Lingua::Stem::Pt::stem({ -words => $word_list_reference,
11                                                 -locale => 'pt',
12                                             -exceptions => $exceptions_hash,
13                                            });
14

DESCRIPTION

16       This routine applies a stemming slgorithm to a passed anon array of
17       Portuguese words, returning the stemmed words as an anon array.
18
19       It is a 'convienence' wrapper for 'Lingua::Stemmer::PT' that provides a
20       standardized interface and caching.
21

CHANGES

23       1.01 2003.09.28 - Documenation fix
24
25       1.00 2003.04.05 - Initial release
26

METHODS

28       stem({ -words => \@words, -locale => 'pt', -exceptions => \%exceptions
29       });
30           Stems a list of passed words using the rules of Portuguese. Returns
31           an anonymous array reference to the stemmed words.
32
33           Example:
34
35             my $stemmed_words = Lingua::Stem::Pt::stem({ -words => \@words,
36                                                         -locale => 'pt',
37                                                     -exceptions => \%exceptions,
38                                     });
39
40       stem_caching({ -level => 0|1|2 });
41           Sets the level of stem caching.
42
43           '0' means 'no caching'. This is the default level.
44
45           '1' means 'cache per run'. This caches stemming results during a
46           single
47               call to 'stem'.
48
49           '2' means 'cache indefinitely'. This caches stemming results until
50               either the process exits or the 'clear_stem_cache' method is
51           called.
52
53       clear_stem_cache;
54           Clears the cache of stemmed words
55

NOTES

57       This code is a wrapper around Lingua::Stem::Snowball::Pt written by Ask
58       Solem Hoel, <ask@unixmonks.net>
59

SEE ALSO

61        Lingua::Stem Lingua::PT::Stemmer;
62

AUTHOR

64         Integration in Lingua::Stem by
65         Benjamin Franz, FreeRun Technologies,
66         snowhare@nihongo.org or http://www.nihongo.org/snowhare/
67
69       Benjamin Franz, FreeRun Technologies
70
71       This code is freely available under the same terms as Perl.
72

BUGS

TODO

75perl v5.30.1                      2020-01-30               Lingua::Stem::Pt(3)
Impressum