Uses of Class
opennlp.tools.util.Sequence
-
Packages that use Sequence Package Description opennlp.tools.chunker Package related to finding non-recursive syntactic annotation such as noun phrase chunks.opennlp.tools.lemmatizer Package related to the lemmatizer functionality.opennlp.tools.ml Package related to Machine Learning (ML) features of OpenNLP, the related ML models, and trainers.opennlp.tools.ml.model Package related to ML models and feature selection techniques.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. -
-
Uses of Sequence in opennlp.tools.chunker
Methods in opennlp.tools.chunker that return Sequence Modifier and Type Method Description Sequence[]
Chunker. topKSequences(String[] sentence, String[] tags)
Returns the top k chunk sequences for the specified sentence with the specified pos-tagsSequence[]
Chunker. topKSequences(String[] sentence, String[] tags, double minSequenceScore)
Returns the top k chunk sequences for the specified sentence with the specified pos-tagsSequence[]
ChunkerME. topKSequences(String[] sentence, String[] tags)
Sequence[]
ChunkerME. topKSequences(String[] sentence, String[] tags, double minSequenceScore)
-
Uses of Sequence in opennlp.tools.lemmatizer
Methods in opennlp.tools.lemmatizer that return Sequence Modifier and Type Method Description Sequence[]
LemmatizerME. topKLemmaClasses(String[] sentence, String[] tags)
Sequence[]
LemmatizerME. topKLemmaClasses(String[] sentence, String[] tags, double minSequenceScore)
Sequence[]
LemmatizerME. topKSequences(String[] sentence, String[] tags)
Sequence[]
LemmatizerME. topKSequences(String[] sentence, String[] tags, double minSequenceScore)
-
Uses of Sequence in opennlp.tools.ml
Methods in opennlp.tools.ml that return Sequence Modifier and Type Method Description Sequence
BeamSearch. bestSequence(T[] sequence, Object[] additionalContext, BeamSearchContextGenerator<T> cg, SequenceValidator<T> validator)
Computes the best sequence of outcomes based on theMaxentModel
.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
.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 Sequence in opennlp.tools.ml.model
Methods in opennlp.tools.ml.model that return Sequence Modifier and Type Method Description Sequence
SequenceClassificationModel. bestSequence(T[] sequence, Object[] additionalContext, BeamSearchContextGenerator<T> cg, SequenceValidator<T> validator)
Finds theSequence
with the highest probability.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.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 Sequence in opennlp.tools.postag
Methods in opennlp.tools.postag that return Sequence Modifier and Type Method Description Sequence[]
POSTagger. topKSequences(String[] sentence)
Assigns the sentence the top-ksequences
.Sequence[]
POSTagger. topKSequences(String[] sentence, Object[] additionalContext)
Assigns the sentence the top-ksequences
.Sequence[]
POSTaggerME. topKSequences(String[] sentence)
Sequence[]
POSTaggerME. topKSequences(String[] sentence, Object[] additionalContext)
-
Uses of Sequence in opennlp.tools.util
Methods in opennlp.tools.util with parameters of type Sequence Modifier and Type Method Description int
Sequence. compareTo(Sequence s)
Constructors in opennlp.tools.util with parameters of type Sequence Constructor Description Sequence(Sequence s)
Sequence(Sequence s, String outcome, double p)
-