Package | Description |
---|---|
org.tribuo.data.columnar |
Provides classes for processing columnar data and generating
Example s. |
org.tribuo.data.columnar.processors.feature |
Provides implementations of
FeatureProcessor . |
org.tribuo.data.columnar.processors.field |
Provides implementations of
FieldProcessor . |
Modifier and Type | Method and Description |
---|---|
List<ColumnarFeature> |
RowProcessor.generateFeatures(Map<String,String> row)
Generates the features from the supplied row.
|
List<ColumnarFeature> |
FeatureProcessor.process(List<ColumnarFeature> features)
Processes a list of
ColumnarFeature s, transforming it
by adding conjunctions or removing unnecessary features. |
List<ColumnarFeature> |
FieldProcessor.process(String value)
Processes the field value and generates a (possibly empty) list of
ColumnarFeature s. |
Modifier and Type | Method and Description |
---|---|
List<ColumnarFeature> |
FeatureProcessor.process(List<ColumnarFeature> features)
Processes a list of
ColumnarFeature s, transforming it
by adding conjunctions or removing unnecessary features. |
Modifier and Type | Method and Description |
---|---|
List<ColumnarFeature> |
UniqueProcessor.process(List<ColumnarFeature> features) |
Modifier and Type | Method and Description |
---|---|
List<ColumnarFeature> |
UniqueProcessor.process(List<ColumnarFeature> features) |
Modifier and Type | Method and Description |
---|---|
List<ColumnarFeature> |
TextFieldProcessor.process(String value) |
List<ColumnarFeature> |
RegexFieldProcessor.process(String value) |
List<ColumnarFeature> |
IdentityProcessor.process(String value) |
List<ColumnarFeature> |
DoubleFieldProcessor.process(String value) |
static List<ColumnarFeature> |
TextFieldProcessor.wrapFeatures(String fieldName,
List<Feature> inputFeatures)
Convert the
Feature s from a text pipeline into ColumnarFeature s with the right field name. |
Copyright © 2015–2021 Oracle and/or its affiliates. All rights reserved.