Uses of Interface
org.tribuo.data.columnar.ResponseProcessor
Packages that use ResponseProcessor
Package
Description
Provides classes for processing columnar data and generating
Examples.Provides implementations of
ResponseProcessor.-
Uses of ResponseProcessor in org.tribuo.data.columnar
Fields in org.tribuo.data.columnar declared as ResponseProcessorMethods in org.tribuo.data.columnar that return ResponseProcessorModifier and TypeMethodDescriptionRowProcessor.getResponseProcessor()Returns the response processor this RowProcessor uses.Constructors in org.tribuo.data.columnar with parameters of type ResponseProcessorModifierConstructorDescriptionRowProcessor(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 ResponseProcessor in org.tribuo.data.columnar.processors.response
Classes in org.tribuo.data.columnar.processors.response that implement ResponseProcessorModifier and TypeClassDescriptionclassBinaryResponseProcessor<T extends Output<T>>AResponseProcessorthat takes a single value of the field as the positive class and all other values as the negative class.final classEmptyResponseProcessor<T extends Output<T>>AResponseProcessorthat always emits an empty optional.classFieldResponseProcessor<T extends Output<T>>A response processor that returns the value in a given field.classQuartileResponseProcessor<T extends Output<T>>Processes the response into quartiles and emits them as classification outputs.