Package opennlp.tools.util.featuregen
Class FastTokenClassFeatureGenerator
- java.lang.Object
-
- opennlp.tools.util.featuregen.FeatureGeneratorAdapter
-
- opennlp.tools.util.featuregen.FastTokenClassFeatureGenerator
-
- All Implemented Interfaces:
AdaptiveFeatureGenerator
@Deprecated public class FastTokenClassFeatureGenerator extends FeatureGeneratorAdapter
Deprecated.UseTokenClassFeatureGeneratorinstead!Generates features for different for the class of the token.
-
-
Constructor Summary
Constructors Constructor Description FastTokenClassFeatureGenerator()Deprecated.FastTokenClassFeatureGenerator(boolean genearteWordAndClassFeature)Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidcreateFeatures(java.util.List<java.lang.String> features, java.lang.String[] tokens, int index, java.lang.String[] preds)Deprecated.Adds the appropriate features for the token at the specified index with the specified array of previous outcomes to the specified list of features.static java.lang.StringtokenFeature(java.lang.String token)Deprecated.-
Methods inherited from class opennlp.tools.util.featuregen.FeatureGeneratorAdapter
clearAdaptiveData, updateAdaptiveData
-
-
-
-
Method Detail
-
tokenFeature
public static java.lang.String tokenFeature(java.lang.String token)
Deprecated.
-
createFeatures
public void createFeatures(java.util.List<java.lang.String> features, java.lang.String[] tokens, int index, java.lang.String[] preds)Deprecated.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.- 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.
-
-