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 opennlp.tools.lemmatizer Package related with the lemmatizer toolopennlp.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 sentece boundries.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
A model for language detection -
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 an abstract base class forParserModel
implementations. -
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 that return BaseModel Modifier and Type Method Description static BaseModel
DownloadUtil. downloadModel(String language, DownloadUtil.ModelType modelType, Class type)
static BaseModel
DownloadUtil. downloadModel(URL url, Class type)
Downloads a model from a URL.
-