Uses of Interface
org.tribuo.data.columnar.FieldProcessor
Package
Description
Provides classes for processing columnar data and generating
Example
s.Provides implementations of
FieldProcessor
.-
Uses of FieldProcessor in org.tribuo.data.columnar
Modifier and TypeFieldDescriptionprotected Map<String,
FieldProcessor> RowProcessor.fieldProcessorMap
protected Map<String,
FieldProcessor> RowProcessor.regexMappingProcessors
Modifier and TypeMethodDescriptionReturns a copy of this FieldProcessor bound to the supplied newFieldName.Modifier and TypeMethodDescriptionRowProcessor.getFieldProcessors()
Returns the map ofFieldProcessor
s this RowProcessor uses.ModifierConstructorDescriptionRowProcessor
(List<FieldExtractor<?>> metadataExtractors, FieldExtractor<Float> weightExtractor, ResponseProcessor<T> responseProcessor, Map<String, FieldProcessor> fieldProcessorMap, Map<String, FieldProcessor> regexMappingProcessors, 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.RowProcessor
(List<FieldExtractor<?>> metadataExtractors, FieldExtractor<Float> weightExtractor, ResponseProcessor<T> responseProcessor, Map<String, FieldProcessor> fieldProcessorMap, Map<String, FieldProcessor> regexMappingProcessors, Set<FeatureProcessor> featureProcessors, boolean replaceNewlinesWithSpaces) 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.RowProcessor
(List<FieldExtractor<?>> metadataExtractors, FieldExtractor<Float> weightExtractor, 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.RowProcessor
(List<FieldExtractor<?>> metadataExtractors, ResponseProcessor<T> responseProcessor, Map<String, FieldProcessor> fieldProcessorMap) 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.RowProcessor
(ResponseProcessor<T> responseProcessor, Map<String, FieldProcessor> fieldProcessorMap) 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.RowProcessor
(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 FieldProcessor in org.tribuo.data.columnar.processors.field
Modifier and TypeClassDescriptionfinal class
Processes a column that contains a date value.class
Processes a column that contains a real value.class
AFieldProcessor
which converts the field name and value into a feature with a value ofIdentityProcessor.FEATURE_VALUE
.class
AFieldProcessor
which applies a regex to a field and generatesColumnarFeature
s based on the matches.class
AFieldProcessor
which takes a text field and runs aTextPipeline
on it to generate features.