Uses of Interface
opennlp.tools.util.SequenceValidator

Packages that use SequenceValidator
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. 
 

Uses of SequenceValidator in opennlp.tools.chunker
 

Classes in opennlp.tools.chunker that implement SequenceValidator
 class DefaultChunkerSequenceValidator
           
 

Methods in opennlp.tools.chunker that return SequenceValidator
 SequenceValidator<String> ChunkerFactory.getSequenceValidator()
           
 

Constructors in opennlp.tools.chunker with parameters of type SequenceValidator
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.
 

Uses of SequenceValidator in opennlp.tools.namefind
 

Classes in opennlp.tools.namefind that implement SequenceValidator
 class NameFinderSequenceValidator
           
 

Constructors in opennlp.tools.namefind with parameters of type SequenceValidator
NameFinderME(TokenNameFinderModel model, AdaptiveFeatureGenerator generator, int beamSize, SequenceValidator<String> sequenceValidator)
          Initializes the name finder with the specified model.
 

Uses of SequenceValidator in opennlp.tools.parser
 

Classes in opennlp.tools.parser that implement SequenceValidator
 class ParserChunkerSequenceValidator
           
 

Uses of SequenceValidator in opennlp.tools.postag
 

Classes in opennlp.tools.postag that implement SequenceValidator
 class DefaultPOSSequenceValidator
           
 

Methods in opennlp.tools.postag that return SequenceValidator
 SequenceValidator<String> POSTaggerFactory.getSequenceValidator()
           
 

Constructors in opennlp.tools.postag with parameters of type SequenceValidator
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.
 

Uses of SequenceValidator in opennlp.tools.util
 

Constructors in opennlp.tools.util with parameters of type SequenceValidator
BeamSearch(int size, BeamSearchContextGenerator<T> cg, opennlp.model.MaxentModel model, SequenceValidator<T> validator, int cacheSize)
           
 



Copyright © 2013 The Apache Software Foundation. All Rights Reserved.