Example
s.See: Description
Interface | Description |
---|---|
FeatureProcessor |
Takes a list of columnar features and adds new features or removes existing features.
|
FieldExtractor<T> |
Extracts a value from a field to be placed in an
Example 's metadata field. |
FieldProcessor |
An interface for things that process the columns in a data set.
|
ResponseProcessor<T extends Output<T>> |
An interface that will take the response field and produce an
Output . |
Class | Description |
---|---|
ColumnarDataSource<T extends Output<T>> |
A
ConfigurableDataSource base class which takes columnar data (e.g., csv or DB table rows) and generates Example s. |
ColumnarFeature |
A Feature with extra bookkeeping for use inside the columnar package.
|
ColumnarIterator |
An abstract class for iterators that read data in to a columnar format, usually from a file of some kind.
|
ColumnarIterator.Row |
A representation of a row of untyped data from a columnar data source.
|
RowProcessor<T extends Output<T>> |
A processor which takes a Map of String to String and returns an
Example . |
Enum | Description |
---|---|
FieldProcessor.GeneratedFeatureType |
The types of generated features.
|
Example
s.
The main class is RowProcessor
which can take a Map
from String to String and generate Feature
s using a FieldProcessor
and Output
s using a ResponseProcessor
.
Copyright © 2015–2021 Oracle and/or its affiliates. All rights reserved.