Package opennlp.tools.util.featuregen
Class WindowFeatureGenerator
java.lang.Object
opennlp.tools.util.featuregen.WindowFeatureGenerator
- All Implemented Interfaces:
- AdaptiveFeatureGenerator
Generates previous and next features for a given 
AdaptiveFeatureGenerator.
 The window size can be specified.
 Features: Current token is always included unchanged Previous tokens are prefixed with p distance Next tokens are prefix with n distance
- 
Field SummaryFields
- 
Constructor SummaryConstructorsConstructorDescriptionWindowFeatureGenerator(int prevWindowSize, int nextWindowSize, AdaptiveFeatureGenerator... generators) Initializes aWindowFeatureGeneratorwith the given parameters.WindowFeatureGenerator(AdaptiveFeatureGenerator generator) Initializes aWindowFeatureGenerator.WindowFeatureGenerator(AdaptiveFeatureGenerator... generators) Initializes aWindowFeatureGenerator.WindowFeatureGenerator(AdaptiveFeatureGenerator generator, int prevWindowSize, int nextWindowSize) Initializes aWindowFeatureGeneratorwith the given parameters.
- 
Method SummaryModifier and TypeMethodDescriptionvoidInforms a feature generator that the context of the adaptive data (typically a document) is no longer valid.voidcreateFeatures(List<String> features, String[] tokens, int index, String[] preds) Adds the appropriate features for the token at the specifiedindexwith the specified array ofpreviousOutcomesto the specified list of features.toString()voidupdateAdaptiveData(String[] tokens, String[] outcomes) Informs a feature generator that the specified tokens have been classified with the corresponding set of specifiedoutcomes.
- 
Field Details- 
PREV_PREFIX- See Also:
 
- 
NEXT_PREFIX- See Also:
 
 
- 
- 
Constructor Details- 
WindowFeatureGeneratorpublic WindowFeatureGenerator(AdaptiveFeatureGenerator generator, int prevWindowSize, int nextWindowSize) Initializes aWindowFeatureGeneratorwith the given parameters.- Parameters:
- generator- The- AdaptiveFeatureGeneratorto apply to the window.
- prevWindowSize- Size of the window to the left of the current token.
- nextWindowSize- Size of the window to the right of the current token.
 
- 
WindowFeatureGeneratorpublic WindowFeatureGenerator(int prevWindowSize, int nextWindowSize, AdaptiveFeatureGenerator... generators) Initializes aWindowFeatureGeneratorwith the given parameters.- Parameters:
- generators- One or more- AdaptiveFeatureGeneratorto apply to the window.
- prevWindowSize- Size of the window to the left of the current token.
- nextWindowSize- Size of the window to the right of the current token.
 
- 
WindowFeatureGeneratorInitializes aWindowFeatureGenerator. The previous and next window size is 5.- Parameters:
- generator- The- AdaptiveFeatureGeneratorto apply to the window.
 
- 
WindowFeatureGeneratorInitializes aWindowFeatureGenerator. The previous and next window size is 5.- Parameters:
- generators- One or more- AdaptiveFeatureGeneratorto apply to the window.
 
 
- 
- 
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:
- features- The list of features to be added to.
- tokens- 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.
 
- 
updateAdaptiveDataDescription copied from interface:AdaptiveFeatureGeneratorInforms a feature generator that the specified tokens have been classified with the corresponding set of specifiedoutcomes.- Specified by:
- updateAdaptiveDatain interface- AdaptiveFeatureGenerator
- Parameters:
- tokens- The tokens of the sentence or other text unit which has been processed.
- outcomes- The outcomes associated with the specified tokens.
 
- 
clearAdaptiveDatapublic void clearAdaptiveData()Description copied from interface:AdaptiveFeatureGeneratorInforms a feature generator that the context of the adaptive data (typically a document) is no longer valid.- Specified by:
- clearAdaptiveDatain interface- AdaptiveFeatureGenerator
 
- 
toString
 
-