Package opennlp.tools.doccat
Class BagOfWordsFeatureGenerator
java.lang.Object
opennlp.tools.doccat.BagOfWordsFeatureGenerator
- All Implemented Interfaces:
 FeatureGenerator
Generates a feature for each word in a document.
- 
Constructor Summary
Constructors - 
Method Summary
Modifier and TypeMethodDescriptionextractFeatures(String[] text, Map<String, Object> extraInformation) Extracts features from giventextfragments. 
- 
Constructor Details
- 
BagOfWordsFeatureGenerator
public BagOfWordsFeatureGenerator()Instantiates a defaultBagOfWordsFeatureGeneratorinstance. 
 - 
 - 
Method Details
- 
extractFeatures
Description copied from interface:FeatureGeneratorExtracts features from giventextfragments.- Specified by:
 extractFeaturesin interfaceFeatureGenerator- Parameters:
 text- The text fragments to extract features fromextraInformation- Optional extra information to be used by theFeatureGenerator.- Returns:
 - A collection of features.
 
 
 -