Package opennlp.tools.postag
Klasse ConfigurablePOSContextGenerator
java.lang.Object
opennlp.tools.postag.ConfigurablePOSContextGenerator
- Alle implementierten Schnittstellen:
POSContextGenerator,BeamSearchContextGenerator<String>
A configurable
context generator for a POSTagger.
This implementation makes use of AdaptiveFeatureGenerator.- Siehe auch:
-
Konstruktorübersicht
KonstruktorenKonstruktorBeschreibungConfigurablePOSContextGenerator(int cacheSize, AdaptiveFeatureGenerator featureGenerator) Initializes aConfigurablePOSContextGeneratorinstance.ConfigurablePOSContextGenerator(AdaptiveFeatureGenerator featureGenerator) Initializes aConfigurablePOSContextGeneratorinstance. -
Methodenübersicht
Modifizierer und TypMethodeBeschreibungString[]getContext(int index, String[] tokens, String[] tags, Object[] additionalContext) Returns the context for making a postag decision at the specified tokenindexgiven the specifiedtokensand previoustags.
-
Konstruktordetails
-
ConfigurablePOSContextGenerator
Initializes aConfigurablePOSContextGeneratorinstance. A cache size of0will be used as default.- Parameter:
featureGenerator- TheAdaptiveFeatureGeneratorto be used.
-
ConfigurablePOSContextGenerator
Initializes aConfigurablePOSContextGeneratorinstance.- Parameter:
cacheSize- The size of theCacheto set. Must be greater than0to have an effect.featureGenerator- TheAdaptiveFeatureGeneratorto be used.
-
-
Methodendetails
-
getContext
Returns the context for making a postag decision at the specified tokenindexgiven the specifiedtokensand previoustags.- Angegeben von:
getContextin SchnittstelleBeamSearchContextGenerator<String>- Angegeben von:
getContextin SchnittstellePOSContextGenerator- Parameter:
index- The index of the token for which the context is provided.tokens- The tokens representing a sentence.tags- The tags assigned to the previous words in the sentence.additionalContext- The context for additional information.- Gibt zurück:
- The context for making a postag decision at the specified token
indexgiven the specifiedtokensand previoustags.
-