public class AggregatedFeatureGenerator extends Object implements AdaptiveFeatureGenerator
AggregatedFeatureGenerator
aggregates a set of
AdaptiveFeatureGenerator
s and calls them to generate the features.Constructor and Description |
---|
AggregatedFeatureGenerator(AdaptiveFeatureGenerator... generators)
Initializes the current instance.
|
AggregatedFeatureGenerator(Collection<AdaptiveFeatureGenerator> generators) |
Modifier and Type | Method and Description |
---|---|
void |
clearAdaptiveData()
Calls the
AdaptiveFeatureGenerator.clearAdaptiveData() method
on all aggregated AdaptiveFeatureGenerator s. |
void |
createFeatures(List<String> features,
String[] tokens,
int index,
String[] previousOutcomes)
Calls the
AdaptiveFeatureGenerator.createFeatures(List, String[], int, String[])
method on all aggregated AdaptiveFeatureGenerator s. |
Collection<AdaptiveFeatureGenerator> |
getGenerators()
Retrieves a
Collections of all aggregated
AdaptiveFeatureGenerator s. |
void |
updateAdaptiveData(String[] tokens,
String[] outcomes)
Calls the
AdaptiveFeatureGenerator.updateAdaptiveData(String[], String[])
method on all aggregated AdaptiveFeatureGenerator s. |
public AggregatedFeatureGenerator(AdaptiveFeatureGenerator... generators)
generators
- array of generators, null values are not permittedpublic AggregatedFeatureGenerator(Collection<AdaptiveFeatureGenerator> generators)
public void clearAdaptiveData()
AdaptiveFeatureGenerator.clearAdaptiveData()
method
on all aggregated AdaptiveFeatureGenerator
s.clearAdaptiveData
in interface AdaptiveFeatureGenerator
public void createFeatures(List<String> features, String[] tokens, int index, String[] previousOutcomes)
AdaptiveFeatureGenerator.createFeatures(List, String[], int, String[])
method on all aggregated AdaptiveFeatureGenerator
s.createFeatures
in interface AdaptiveFeatureGenerator
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.public void updateAdaptiveData(String[] tokens, String[] outcomes)
AdaptiveFeatureGenerator.updateAdaptiveData(String[], String[])
method on all aggregated AdaptiveFeatureGenerator
s.updateAdaptiveData
in interface AdaptiveFeatureGenerator
tokens
- The tokens of the sentence or other text unit which has been processed.outcomes
- The outcomes associated with the specified tokens.public Collection<AdaptiveFeatureGenerator> getGenerators()
Collections
of all aggregated
AdaptiveFeatureGenerator
s.Copyright © 2020 The Apache Software Foundation. All rights reserved.