Schnittstelle Lemmatizer

Alle bekannten Implementierungsklassen:
DictionaryLemmatizer, LemmatizerME, ThreadSafeLemmatizerME

public interface Lemmatizer
The common interface for lemmatizers.
  • Methodendetails

    • lemmatize

      String[] lemmatize(String[] toks, String[] tags)
      Generates lemmas for the word and postag.
      Parameter:
      toks - An array of the tokens
      tags - an array of the pos tags
      Gibt zurück:
      An array of possible lemmas for each token in the toks sequence.
    • lemmatize

      List<List<String>> lemmatize(List<String> toks, List<String> tags)
      Generates lemma tags for the word and postag.
      Parameter:
      toks - An array of the tokens
      tags - An array of the pos tags
      Gibt zurück:
      A list of every possible lemma for each token in the toks sequence.