Package | Description |
---|---|
opennlp.tools.chunker |
Package related to finding non-recursive syntactic annotation such as noun phrase chunks.
|
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.util |
Package containing utility data structures and algorithms used by multiple other packages.
|
Modifier and Type | Class and Description |
---|---|
class |
DefaultChunkerSequenceValidator |
Modifier and Type | Method and Description |
---|---|
SequenceValidator<String> |
ChunkerFactory.getSequenceValidator() |
Constructor and Description |
---|
ChunkerME(ChunkerModel model,
int beamSize,
SequenceValidator<String> sequenceValidator)
Deprecated.
Use
ChunkerME.ChunkerME(ChunkerModel, int) instead
and use the ChunkerFactory to configure the SequenceValidator . |
ChunkerME(ChunkerModel model,
int beamSize,
SequenceValidator<String> sequenceValidator,
ChunkerContextGenerator contextGenerator)
Deprecated.
Use
ChunkerME.ChunkerME(ChunkerModel, int) instead
and use the ChunkerFactory to configure the SequenceValidator and ChunkerContextGenerator . |
Modifier and Type | Class and Description |
---|---|
class |
NameFinderSequenceValidator |
Constructor and Description |
---|
NameFinderME(TokenNameFinderModel model,
AdaptiveFeatureGenerator generator,
int beamSize,
SequenceValidator<String> sequenceValidator)
Initializes the name finder with the specified model.
|
Modifier and Type | Class and Description |
---|---|
class |
ParserChunkerSequenceValidator |
Modifier and Type | Class and Description |
---|---|
class |
DefaultPOSSequenceValidator |
Modifier and Type | Method and Description |
---|---|
SequenceValidator<String> |
POSTaggerFactory.getSequenceValidator() |
Constructor and Description |
---|
POSTaggerME(POSModel model,
int beamSize,
int cacheSize,
SequenceValidator<String> sequenceValidator)
Deprecated.
use
POSTaggerME.POSTaggerME(POSModel, int, int) instead. The model
knows which SequenceValidator to use. |
Constructor and Description |
---|
BeamSearch(int size,
BeamSearchContextGenerator<T> cg,
MaxentModel model,
SequenceValidator<T> validator,
int cacheSize) |
Copyright © 2017 The Apache Software Foundation. All rights reserved.