Uses of Interface
opennlp.tools.util.featuregen.AdaptiveFeatureGenerator
Packages that use AdaptiveFeatureGenerator
Package
Description
Package related to finding proper names and numeric amounts.
Package related to part-of-speech tagging.
This package contains classes for generating sequence features.
-
Uses of AdaptiveFeatureGenerator in opennlp.tools.namefind
Fields in opennlp.tools.namefind declared as AdaptiveFeatureGeneratorModifier and TypeFieldDescriptionprotected AdaptiveFeatureGenerator[]
DefaultNameContextGenerator.featureGenerators
Methods in opennlp.tools.namefind that return AdaptiveFeatureGeneratorModifier and TypeMethodDescriptionTokenNameFinderFactory.createFeatureGenerators()
Creates theAdaptiveFeatureGenerator
.Methods in opennlp.tools.namefind with parameters of type AdaptiveFeatureGeneratorModifier and TypeMethodDescriptionvoid
DefaultNameContextGenerator.addFeatureGenerator
(AdaptiveFeatureGenerator generator) void
NameContextGenerator.addFeatureGenerator
(AdaptiveFeatureGenerator generator) Adds a feature generator.Constructors in opennlp.tools.namefind with parameters of type AdaptiveFeatureGeneratorModifierConstructorDescriptionDefaultNameContextGenerator
(AdaptiveFeatureGenerator... featureGenerators) Creates a name context generator with the specifiedfeature generators
.NameSampleSequenceStream
(ObjectStream<NameSample> psi, AdaptiveFeatureGenerator featureGen) NameSampleSequenceStream
(ObjectStream<NameSample> psi, AdaptiveFeatureGenerator featureGen, boolean useOutcomes) -
Uses of AdaptiveFeatureGenerator in opennlp.tools.postag
Methods in opennlp.tools.postag that return AdaptiveFeatureGeneratorModifier and TypeMethodDescriptionPOSTaggerFactory.createFeatureGenerators()
Creates theAdaptiveFeatureGenerator
.Constructors in opennlp.tools.postag with parameters of type AdaptiveFeatureGeneratorModifierConstructorDescriptionConfigurablePOSContextGenerator
(int cacheSize, AdaptiveFeatureGenerator featureGenerator) Initializes aConfigurablePOSContextGenerator
instance.ConfigurablePOSContextGenerator
(AdaptiveFeatureGenerator featureGenerator) Initializes aConfigurablePOSContextGenerator
instance. -
Uses of AdaptiveFeatureGenerator in opennlp.tools.util.featuregen
Classes in opennlp.tools.util.featuregen that implement AdaptiveFeatureGeneratorModifier and TypeClassDescriptionclass
TheAdditionalContextFeatureGenerator
generates the context from the passed in additional context.class
TheAggregatedFeatureGenerator
aggregates a set ofAdaptiveFeatureGenerator
s and calls them to generate the features.class
class
Generates Brown cluster features for token bigrams.class
GeneratesBrownCluster
features for current token and token class.class
GeneratesBrownCluster
features for current token.class
Caches features of the aggregatedgenerators
.class
TheCharacterNgramFeatureGenerator
uses character ngrams to generate features about each token.class
TheDictionaryFeatureGenerator
uses theDictionaryNameFinder
to generated features for detected names based on theInSpanGenerator
.class
class
Generates features if the tokens are recognized by the providedTokenNameFinder
.class
The definition feature maps the underlying distribution of outcomes.class
class
Adds the token POS Tag as feature.class
class
ThisAdaptiveFeatureGenerator
generates features indicating the outcome associated with a previously occurring word.class
ThisAdaptiveFeatureGenerator
generates features indicating the outcome associated with two previously occurring words.class
This feature generator creates sentence begin and end features.class
class
Generates features for different for the class of the token.class
Generates a feature which contains the token itself.class
Partitions tokens into sub-tokens based on character classes and generates class features for each of the sub-tokens and combinations of those sub-tokens.class
Adds trigram features based on tokens and token classes.class
Generates previous and next features for a givenAdaptiveFeatureGenerator
.class
Methods in opennlp.tools.util.featuregen that return AdaptiveFeatureGeneratorModifier and TypeMethodDescriptionAggregatedFeatureGeneratorFactory.create()
BigramNameFeatureGeneratorFactory.create()
BrownClusterBigramFeatureGeneratorFactory.create()
BrownClusterTokenClassFeatureGeneratorFactory.create()
BrownClusterTokenFeatureGeneratorFactory.create()
CachedFeatureGeneratorFactory.create()
CharacterNgramFeatureGeneratorFactory.create()
DefinitionFeatureGeneratorFactory.create()
DictionaryFeatureGeneratorFactory.create()
DocumentBeginFeatureGeneratorFactory.create()
abstract AdaptiveFeatureGenerator
GeneratorFactory.AbstractXmlFeatureGeneratorFactory.create()
static AdaptiveFeatureGenerator
GeneratorFactory.create
(InputStream xmlDescriptorIn, FeatureGeneratorResourceProvider resourceManager) Creates anAdaptiveFeatureGenerator
from an provided XML descriptor.PosTaggerFeatureGeneratorFactory.create()
POSTaggerNameFeatureGeneratorFactory.create()
PrefixFeatureGeneratorFactory.create()
PreviousMapFeatureGeneratorFactory.create()
SentenceFeatureGeneratorFactory.create()
SuffixFeatureGeneratorFactory.create()
TokenClassFeatureGeneratorFactory.create()
TokenFeatureGeneratorFactory.create()
TokenPatternFeatureGeneratorFactory.create()
TrigramNameFeatureGeneratorFactory.create()
WindowFeatureGeneratorFactory.create()
WordClusterFeatureGeneratorFactory.create()
CachedFeatureGenerator.getCachedFeatureGenerator()
Methods in opennlp.tools.util.featuregen that return types with arguments of type AdaptiveFeatureGeneratorModifier and TypeMethodDescriptionAggregatedFeatureGenerator.getGenerators()
Retrieves aCollections
of all aggregatedAdaptiveFeatureGenerator
s.Constructors in opennlp.tools.util.featuregen with parameters of type AdaptiveFeatureGeneratorModifierConstructorDescriptionAggregatedFeatureGenerator
(AdaptiveFeatureGenerator... generators) Initializes the current instance.CachedFeatureGenerator
(AdaptiveFeatureGenerator generator) CachedFeatureGenerator
(AdaptiveFeatureGenerator... generators) Deprecated.WindowFeatureGenerator
(int prevWindowSize, int nextWindowSize, AdaptiveFeatureGenerator... generators) Initializes aWindowFeatureGenerator
with the given parameters.WindowFeatureGenerator
(AdaptiveFeatureGenerator generator) Initializes aWindowFeatureGenerator
.WindowFeatureGenerator
(AdaptiveFeatureGenerator... generators) Initializes aWindowFeatureGenerator
.WindowFeatureGenerator
(AdaptiveFeatureGenerator generator, int prevWindowSize, int nextWindowSize) Initializes aWindowFeatureGenerator
with the given parameters.Constructor parameters in opennlp.tools.util.featuregen with type arguments of type AdaptiveFeatureGeneratorModifierConstructorDescriptionAggregatedFeatureGenerator
(Collection<AdaptiveFeatureGenerator> generators)