Interface | Description |
---|---|
Tagger |
The part-of-speech tagger interface, whose implementations are usually language-dependent.
|
WordTagger |
Find the potential part-of-speech tags (POS tags) for a word.
|
Class | Description |
---|---|
BaseTagger |
Base tagger using Morfologik binary dictionaries.
|
CombiningTagger |
Tags a word using two taggers, combining their results.
|
ManualTagger |
A tagger that reads the POS information from a plain (UTF-8) text file.
|
MorfologikTagger |
Tags a word using a Morfologik binary dictionary.
|
TaggedWord |
Result of
WordTagger . |