Package opennlp.tools.util.featuregen
Class BigramNameFeatureGenerator
- java.lang.Object
- 
- opennlp.tools.util.featuregen.BigramNameFeatureGenerator
 
- 
- All Implemented Interfaces:
- AdaptiveFeatureGenerator
 
 public class BigramNameFeatureGenerator extends Object implements AdaptiveFeatureGenerator 
- 
- 
Constructor SummaryConstructors Constructor Description BigramNameFeatureGenerator()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcreateFeatures(List<String> features, String[] tokens, int index, String[] previousOutcomes)Adds the appropriate features for the token at the specified index with the specified array of previous outcomes to the specified list of features.- 
Methods inherited from class java.lang.Objectequals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 - 
Methods inherited from interface opennlp.tools.util.featuregen.AdaptiveFeatureGeneratorclearAdaptiveData, updateAdaptiveData
 
- 
 
- 
- 
- 
Method Detail- 
createFeaturespublic void createFeatures(List<String> features, String[] tokens, int index, String[] previousOutcomes) Description copied from interface:AdaptiveFeatureGeneratorAdds the appropriate features for the token at the specified index with the specified array of previous outcomes to 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.
- previousOutcomes- The outcomes for the tokens prior to the specified index.
 
 
- 
 
-