Uses of Class
opennlp.tools.util.model.BaseModel
-
Packages that use BaseModel Package Description opennlp.tools.chunker Package related to finding non-recursive syntactic annotation such as noun phrase chunks.opennlp.tools.doccat Package for classifying a document into a category.opennlp.tools.langdetect Package related to predicting languages from samples of text.opennlp.tools.lemmatizer Package related to the lemmatizer functionality.opennlp.tools.namefind Package related to finding proper names and numeric amounts.opennlp.tools.parser Package containing common code for performing full syntactic parsing.opennlp.tools.postag Package related to part-of-speech tagging.opennlp.tools.sentdetect Package related to identifying sentence boundaries.opennlp.tools.tokenize Contains classes related to finding token or words in a string.opennlp.tools.util Package containing utility data structures and algorithms used by multiple other packages. -
-
Uses of BaseModel in opennlp.tools.chunker
Subclasses of BaseModel in opennlp.tools.chunker Modifier and Type Class Description class
ChunkerModel
TheChunkerModel
is the model used by a learnableChunker
. -
Uses of BaseModel in opennlp.tools.doccat
Subclasses of BaseModel in opennlp.tools.doccat Modifier and Type Class Description class
DoccatModel
A model for document categorization -
Uses of BaseModel in opennlp.tools.langdetect
Subclasses of BaseModel in opennlp.tools.langdetect Modifier and Type Class Description class
LanguageDetectorModel
TheLanguageDetectorModel
is the model used by a learnableLanguageDetector
. -
Uses of BaseModel in opennlp.tools.lemmatizer
Subclasses of BaseModel in opennlp.tools.lemmatizer Modifier and Type Class Description class
LemmatizerModel
TheLemmatizerModel
is the model used by a learnableLemmatizer
. -
Uses of BaseModel in opennlp.tools.namefind
Subclasses of BaseModel in opennlp.tools.namefind Modifier and Type Class Description class
TokenNameFinderModel
TheTokenNameFinderModel
is the model used by a learnableTokenNameFinder
. -
Uses of BaseModel in opennlp.tools.parser
Subclasses of BaseModel in opennlp.tools.parser Modifier and Type Class Description class
ParserModel
This is the defaultParserModel
implementation. -
Uses of BaseModel in opennlp.tools.postag
Subclasses of BaseModel in opennlp.tools.postag Modifier and Type Class Description class
POSModel
-
Uses of BaseModel in opennlp.tools.sentdetect
Subclasses of BaseModel in opennlp.tools.sentdetect Modifier and Type Class Description class
SentenceModel
TheSentenceModel
is the model used by a learnableSentenceDetector
. -
Uses of BaseModel in opennlp.tools.tokenize
Subclasses of BaseModel in opennlp.tools.tokenize Modifier and Type Class Description class
TokenizerModel
TheTokenizerModel
is the model used by a learnableTokenizer
. -
Uses of BaseModel in opennlp.tools.util
Methods in opennlp.tools.util with type parameters of type BaseModel Modifier and Type Method Description static <T extends BaseModel>
TDownloadUtil. downloadModel(String language, DownloadUtil.ModelType modelType, Class<T> type)
Triggers a download for the specifiedDownloadUtil.ModelType
.static <T extends BaseModel>
TDownloadUtil. downloadModel(URL url, Class<T> type)
Downloads a model from aURL
.
-