Uses of Class
org.tribuo.data.columnar.ColumnarFeature
Packages that use ColumnarFeature
Package
Description
Provides classes for processing columnar data and generating
Example
s.Provides implementations of
FeatureProcessor
.Provides implementations of
FieldProcessor
.-
Uses of ColumnarFeature in org.tribuo.data.columnar
Methods in org.tribuo.data.columnar that return types with arguments of type ColumnarFeatureModifier and TypeMethodDescriptionRowProcessor.generateFeatures
(Map<String, String> row) Generates the features from the supplied row.FeatureProcessor.process
(List<ColumnarFeature> features) Processes a list ofColumnarFeature
s, transforming it by adding conjunctions or removing unnecessary features.Processes the field value and generates a (possibly empty) list ofColumnarFeature
s.Method parameters in org.tribuo.data.columnar with type arguments of type ColumnarFeatureModifier and TypeMethodDescriptionFeatureProcessor.process
(List<ColumnarFeature> features) Processes a list ofColumnarFeature
s, transforming it by adding conjunctions or removing unnecessary features. -
Uses of ColumnarFeature in org.tribuo.data.columnar.processors.feature
Methods in org.tribuo.data.columnar.processors.feature that return types with arguments of type ColumnarFeatureMethod parameters in org.tribuo.data.columnar.processors.feature with type arguments of type ColumnarFeature -
Uses of ColumnarFeature in org.tribuo.data.columnar.processors.field
Methods in org.tribuo.data.columnar.processors.field that return types with arguments of type ColumnarFeatureModifier and TypeMethodDescriptionstatic List<ColumnarFeature>
TextFieldProcessor.wrapFeatures
(String fieldName, List<Feature> inputFeatures) Convert theFeature
s from a text pipeline intoColumnarFeature
s with the right field name.