Package opennlp.tools.lemmatizer
Interface Lemmatizer
-
- All Known Implementing Classes:
DictionaryLemmatizer
,LemmatizerME
public interface Lemmatizer
The common interface for lemmatizers.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String[]
lemmatize(String[] toks, String[] tags)
Generates lemmas for the word and postag.List<List<String>>
lemmatize(List<String> toks, List<String> tags)
Generates lemma tags for the word and postag.
-