Uses of Interface
opennlp.tools.util.BeamSearchContextGenerator
Packages that use BeamSearchContextGenerator
Package
Description
Package related to finding non-recursive syntactic annotation such as noun phrase chunks.
Package related to the lemmatizer functionality.
Package related to Machine Learning (ML) features of OpenNLP, the related ML models, and trainers.
Package related to ML models and feature selection techniques.
Package related to finding proper names and numeric amounts.
Package containing common code for performing full syntactic parsing.
Package related to part-of-speech tagging.
-
Uses of BeamSearchContextGenerator in opennlp.tools.chunker
Subinterfaces of BeamSearchContextGenerator in opennlp.tools.chunkerModifier and TypeInterfaceDescriptioninterface
Interface for aBeamSearchContextGenerator
used in syntactic chunking.Classes in opennlp.tools.chunker that implement BeamSearchContextGeneratorModifier and TypeClassDescriptionclass
Features based on chunking model described in Fei Sha and Fernando Pereira. -
Uses of BeamSearchContextGenerator in opennlp.tools.lemmatizer
Subinterfaces of BeamSearchContextGenerator in opennlp.tools.lemmatizerModifier and TypeInterfaceDescriptioninterface
Interface for the context generator used for probabilisticLemmatizer
.Classes in opennlp.tools.lemmatizer that implement BeamSearchContextGeneratorModifier and TypeClassDescriptionclass
Simple feature generator for learning statistical lemmatizers. -
Uses of BeamSearchContextGenerator in opennlp.tools.ml
Methods in opennlp.tools.ml with parameters of type BeamSearchContextGeneratorModifier and TypeMethodDescription<T> Sequence
BeamSearch.bestSequence
(T[] sequence, Object[] additionalContext, BeamSearchContextGenerator<T> cg, SequenceValidator<T> validator) Computes the best sequence of outcomes based on theMaxentModel
.<T> Sequence[]
BeamSearch.bestSequences
(int numSequences, T[] sequence, Object[] additionalContext, double minSequenceScore, BeamSearchContextGenerator<T> cg, SequenceValidator<T> validator) Computes the best sequence of outcomes based on theMaxentModel
.<T> Sequence[]
BeamSearch.bestSequences
(int numSequences, T[] sequence, Object[] additionalContext, BeamSearchContextGenerator<T> cg, SequenceValidator<T> validator) Computes the best sequence of outcomes based on theMaxentModel
. -
Uses of BeamSearchContextGenerator in opennlp.tools.ml.model
Methods in opennlp.tools.ml.model with parameters of type BeamSearchContextGeneratorModifier and TypeMethodDescription<T> Sequence
SequenceClassificationModel.bestSequence
(T[] sequence, Object[] additionalContext, BeamSearchContextGenerator<T> cg, SequenceValidator<T> validator) Finds theSequence
with the highest probability.<T> Sequence[]
SequenceClassificationModel.bestSequences
(int numSequences, T[] sequence, Object[] additionalContext, double minSequenceScore, BeamSearchContextGenerator<T> cg, SequenceValidator<T> validator) Finds the n most probablesequences
with the highest probability.<T> Sequence[]
SequenceClassificationModel.bestSequences
(int numSequences, T[] sequence, Object[] additionalContext, BeamSearchContextGenerator<T> cg, SequenceValidator<T> validator) Finds the n most probablesequences
with the highest probability. -
Uses of BeamSearchContextGenerator in opennlp.tools.namefind
Subinterfaces of BeamSearchContextGenerator in opennlp.tools.namefindModifier and TypeInterfaceDescriptioninterface
Interface for generating the context for aname finder
by specifying a set of feature generators.Classes in opennlp.tools.namefind that implement BeamSearchContextGeneratorModifier and TypeClassDescriptionclass
ANameContextGenerator
implementation for determining contextual features for atag-chunk
style named-entity recognizer. -
Uses of BeamSearchContextGenerator in opennlp.tools.parser
Classes in opennlp.tools.parser that implement BeamSearchContextGeneratorModifier and TypeClassDescriptionclass
Creates predictive context for the pre-chunking phases of parsing. -
Uses of BeamSearchContextGenerator in opennlp.tools.postag
Subinterfaces of BeamSearchContextGenerator in opennlp.tools.postagModifier and TypeInterfaceDescriptioninterface
Interface for aBeamSearchContextGenerator
used in POS tagging.Classes in opennlp.tools.postag that implement BeamSearchContextGeneratorModifier and TypeClassDescriptionclass
A configurablecontext generator
for aPOSTagger
.class
A defaultcontext generator
for aPOSTagger
.