Package opennlp.tools.util.featuregen
Class TokenPatternFeatureGenerator
java.lang.Object
opennlp.tools.util.featuregen.TokenPatternFeatureGenerator
- All Implemented Interfaces:
- AdaptiveFeatureGenerator
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.
- 
Constructor SummaryConstructorsConstructorDescriptionInitializes aTokenPatternFeatureGenerator.TokenPatternFeatureGenerator(Tokenizer supportTokenizer) Initializes aTokenPatternFeatureGeneratorinstance.
- 
Method SummaryModifier and TypeMethodDescriptionvoidcreateFeatures(List<String> feats, String[] toks, int index, String[] preds) Adds the appropriate features for the token at the specifiedindexwith the specified array ofpreviousOutcomesto the specified list of features.Methods inherited from class java.lang.Objectequals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface opennlp.tools.util.featuregen.AdaptiveFeatureGeneratorclearAdaptiveData, updateAdaptiveData
- 
Constructor Details- 
TokenPatternFeatureGeneratorpublic TokenPatternFeatureGenerator()Initializes aTokenPatternFeatureGenerator. For tokenization theSimpleTokenizeris used.
- 
TokenPatternFeatureGeneratorInitializes aTokenPatternFeatureGeneratorinstance.- Parameters:
- supportTokenizer- The- Tokenizerto be used.
 
 
- 
- 
Method Details- 
createFeaturesDescription copied from interface:AdaptiveFeatureGeneratorAdds the appropriate features for the token at the specifiedindexwith the specified array ofpreviousOutcomesto the specified list of features.- Specified by:
- createFeaturesin interface- AdaptiveFeatureGenerator
- Parameters:
- feats- The list of features to be added to.
- toks- The tokens of the sentence or other text unit being processed.
- index- The index of the token which is currently being processed.
- preds- The outcomes for the tokens prior to the specified index.
 
 
-