Uses of Interface
org.tribuo.data.columnar.FeatureProcessor
Package
Description
Provides classes for processing columnar data and generating
Example
s.Provides implementations of
FeatureProcessor
.-
Uses of FeatureProcessor in org.tribuo.data.columnar
Modifier and TypeMethodDescriptionRowProcessor.getFeatureProcessors()
Returns the set ofFeatureProcessor
s this RowProcessor uses.Modifier and TypeMethodDescriptionRowProcessor.Builder.addFeatureProcessor
(FeatureProcessor featureProcessor) Add a single feature processor to the builder.Modifier and TypeMethodDescriptionRowProcessor.Builder.setFeatureProcessors
(Set<FeatureProcessor> featureProcessors) TheFeatureProcessor
s to apply to each extracted feature list.ModifierConstructorDescriptionRowProcessor
(List<FieldExtractor<?>> metadataExtractors, FieldExtractor<Float> weightExtractor, ResponseProcessor<T> responseProcessor, Map<String, FieldProcessor> fieldProcessorMap, Map<String, FieldProcessor> regexMappingProcessors, Set<FeatureProcessor> featureProcessors) Deprecated.RowProcessor
(List<FieldExtractor<?>> metadataExtractors, FieldExtractor<Float> weightExtractor, ResponseProcessor<T> responseProcessor, Map<String, FieldProcessor> fieldProcessorMap, Map<String, FieldProcessor> regexMappingProcessors, Set<FeatureProcessor> featureProcessors, boolean replaceNewlinesWithSpaces) Deprecated.PreferRowProcessor.Builder
to many-argument constructorsRowProcessor
(List<FieldExtractor<?>> metadataExtractors, FieldExtractor<Float> weightExtractor, ResponseProcessor<T> responseProcessor, Map<String, FieldProcessor> fieldProcessorMap, Set<FeatureProcessor> featureProcessors) Deprecated.PreferRowProcessor.Builder
to many-argument constructorsRowProcessor
(ResponseProcessor<T> responseProcessor, Map<String, FieldProcessor> fieldProcessorMap, Set<FeatureProcessor> featureProcessors) Constructs a RowProcessor using the supplied responseProcessor to extract the response variable, and the supplied fieldProcessorMap to control which fields are parsed and how they are parsed. -
Uses of FeatureProcessor in org.tribuo.data.columnar.processors.feature
Modifier and TypeClassDescriptionclass
Processes a feature list, aggregating all the feature values with the same name.
RowProcessor.Builder
to many-argument constructors