Package opennlp.tools.doccat
Class BagOfWordsFeatureGenerator
- java.lang.Object
-
- opennlp.tools.doccat.BagOfWordsFeatureGenerator
-
- All Implemented Interfaces:
FeatureGenerator
public class BagOfWordsFeatureGenerator extends Object implements FeatureGenerator
Generates a feature for each word in a document.
-
-
Constructor Summary
Constructors Constructor Description BagOfWordsFeatureGenerator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Collection<String>
extractFeatures(String[] text, Map<String,Object> extraInformation)
Extract features from given text fragments
-
-
-
Method Detail
-
extractFeatures
public Collection<String> extractFeatures(String[] text, Map<String,Object> extraInformation)
Description copied from interface:FeatureGenerator
Extract features from given text fragments- Specified by:
extractFeatures
in interfaceFeatureGenerator
- Parameters:
text
- the text fragments to extract features fromextraInformation
- optional extra information to be used by the feature generator- Returns:
- a collection of features
-
-