A schema which specialize on transforming single column
to size(1) Tensor
.
A schema which specialize on transforming multiple numeric
columns to one Tensor
.
A schema which specialize on transforming multiple numeric
columns to one Tensor
.
Types of selected columns
will be identified according to their [DataType
.
And type conversions will be done automatically from DataType
to T
if valid.
Currently, DoubleType
, FloatType
, ShortType
, IntegerType
, LongType
are supported.
the type of result Tensor
A schema
describe a transforming job which convert a Row
to a Table
(Tensor
).
This transformer is a container of RowTransformSchema
s.
Row
to a Table
whose values are all Tensor
.This transformer is a container of RowTransformSchema
s.
When this transformer being executed,
it will run transform
methods of its RowTransformSchema
s.
Output of RowTransformer
is a Table
.
The keys of Table
are Tensor.scalar(schemaKey
)s of included RowTransformSchema
s.
Correspondingly, the values of Table
are results(Tensor
) of RowTransformSchema.transform
.
A schema which specialize on transforming
single column
to size(1)Tensor
. Types ofselected columns
will be identified according to theirDataType
. And type conversions will be done automatically fromDataType
toTensorDataType
.