Package opennlp.tools.ml
Klasse BeamSearch
java.lang.Object
opennlp.tools.ml.BeamSearch
- Alle implementierten Schnittstellen:
SequenceClassificationModel
Performs k-best search over a sequence.
This is based on the description in Ratnaparkhi (1998), PhD diss, Univ. of Pennsylvania.
- Siehe auch:
-
Feldübersicht
Felder -
Konstruktorübersicht
KonstruktorenKonstruktorBeschreibungBeamSearch
(int size, MaxentModel model) Initializes aBeamSearch
instance.BeamSearch
(int size, MaxentModel model, int cacheSize) Initializes aBeamSearch
instance. -
Methodenübersicht
Modifizierer und TypMethodeBeschreibung<T> Sequence
bestSequence
(T[] sequence, Object[] additionalContext, BeamSearchContextGenerator<T> cg, SequenceValidator<T> validator) Computes the best sequence of outcomes based on theMaxentModel
.<T> Sequence[]
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[]
bestSequences
(int numSequences, T[] sequence, Object[] additionalContext, BeamSearchContextGenerator<T> cg, SequenceValidator<T> validator) Computes the best sequence of outcomes based on theMaxentModel
.String[]
-
Felddetails
-
BEAM_SIZE_PARAMETER
- Siehe auch:
-
-
Konstruktordetails
-
BeamSearch
Initializes aBeamSearch
instance.- Parameter:
size
- The size of the beam (k).model
- TheMaxentModel
for assigning probabilities to the sequence outcomes.
-
BeamSearch
Initializes aBeamSearch
instance.- Parameter:
size
- The size of the beam (k).model
- TheMaxentModel
for assigning probabilities to the sequence outcomes.cacheSize
- The capacity of theCache
to use.
-
-
Methodendetails
-
bestSequences
public <T> Sequence[] bestSequences(int numSequences, T[] sequence, Object[] additionalContext, double minSequenceScore, BeamSearchContextGenerator<T> cg, SequenceValidator<T> validator) Computes the best sequence of outcomes based on theMaxentModel
.- Angegeben von:
bestSequences
in SchnittstelleSequenceClassificationModel
- Parameter:
numSequences
- The number of sequences.sequence
- The inputBeamSearch
sequence.additionalContext
- AnObject
of additional context. This is passed to the context generator blindly with the assumption that the context are appropriate.minSequenceScore
- The minimum sequence score to use.cg
- Thecontext generator
to use.validator
- TheSequenceValidator
to validate sequences.- Gibt zurück:
- The top ranked
Sequence
of outcomes ornull
if no sequence could be found.
-
bestSequences
public <T> Sequence[] bestSequences(int numSequences, T[] sequence, Object[] additionalContext, BeamSearchContextGenerator<T> cg, SequenceValidator<T> validator) Computes the best sequence of outcomes based on theMaxentModel
.- Angegeben von:
bestSequences
in SchnittstelleSequenceClassificationModel
- Parameter:
numSequences
- The number of sequences.sequence
- The inputBeamSearch
sequence.additionalContext
- AnObject
of additional context. This is passed to the context generator blindly with the assumption that the context are appropriate.cg
- Thecontext generator
to use.validator
- TheSequenceValidator
to validate sequences.- Gibt zurück:
- The top ranked
Sequence
of outcomes ornull
if no sequence could be found.
-
bestSequence
public <T> Sequence bestSequence(T[] sequence, Object[] additionalContext, BeamSearchContextGenerator<T> cg, SequenceValidator<T> validator) Computes the best sequence of outcomes based on theMaxentModel
.- Angegeben von:
bestSequence
in SchnittstelleSequenceClassificationModel
- Parameter:
sequence
- The inputBeamSearch
sequence.additionalContext
- AnObject
of additional context. This is passed to the context generator blindly with the assumption that the context are appropriate.cg
- Thecontext generator
to use.validator
- TheSequenceValidator
to validate sequences.- Gibt zurück:
- The top ranked
Sequence
of outcomes ornull
if no sequence could be found.
-
getOutcomes
- Angegeben von:
getOutcomes
in SchnittstelleSequenceClassificationModel
- Gibt zurück:
- Retrieves all possible outcomes.
-