Modifier and Type | Interface and Description |
---|---|
interface |
Estimator<E extends Estimator<E,M>,M extends Model<M>>
Estimators are
PipelineStage s responsible for training and generating machine learning
models. |
interface |
Model<M extends Model<M>>
A model is an ordinary
Transformer except how it is created. |
(package private) interface |
org.apache.flink.ml.api.core.PipelineStage<T extends org.apache.flink.ml.api.core.PipelineStage<T>>
Base class for a stage in a pipeline.
|
interface |
Transformer<T extends Transformer<T>>
|
Modifier and Type | Class and Description |
---|---|
class |
Pipeline
A pipeline is a linear workflow which chains
Estimator s and Transformer s to
execute an algorithm. |
Modifier and Type | Class and Description |
---|---|
class |
AlgoOperator<T extends AlgoOperator<T>>
Base class for algorithm operators.
|
Modifier and Type | Class and Description |
---|---|
class |
BatchOperator<T extends BatchOperator<T>>
Base class of batch algorithm operators.
|
Modifier and Type | Class and Description |
---|---|
class |
TableSourceBatchOp
Transform the Table to SourceBatchOp.
|
Modifier and Type | Class and Description |
---|---|
class |
StreamOperator<T extends StreamOperator<T>>
Base class of stream algorithm operators.
|
Modifier and Type | Class and Description |
---|---|
class |
TableSourceStreamOp
Transform the Table to SourceStreamOp.
|
Modifier and Type | Interface and Description |
---|---|
interface |
HasMLEnvironmentId<T>
An interface for classes with a parameter specifying the id of MLEnvironment.
|
Modifier and Type | Interface and Description |
---|---|
interface |
HasOutputCol<T>
An interface for classes with a parameter specifying the name of the output column.
|
interface |
HasOutputColDefaultAsNull<T>
An interface for classes with a parameter specifying name of the output column with a null
default value.
|
interface |
HasOutputCols<T>
An interface for classes with a parameter specifying names of multiple output columns.
|
interface |
HasOutputColsDefaultAsNull<T>
An interface for classes with a parameter specifying names of multiple output columns.
|
interface |
HasPredictionCol<T>
An interface for classes with a parameter specifying the column name of the prediction.
|
interface |
HasPredictionDetailCol<T>
An interface for classes with a parameter specifying the column name of prediction detail.
|
interface |
HasReservedCols<T>
An interface for classes with a parameter specifying the names of the columns to be retained in
the output table.
|
interface |
HasSelectedCol<T>
An interface for classes with a parameter specifying the name of the table column.
|
interface |
HasSelectedColDefaultAsNull<T>
An interface for classes with a parameter specifying the name of the table column with null
default value.
|
interface |
HasSelectedCols<T>
An interface for classes with a parameter specifying the name of multiple table columns.
|
interface |
HasSelectedColsDefaultAsNull<T>
An interface for classes with a parameter specifying the name of multiple table columns with null
default value.
|
Modifier and Type | Class and Description |
---|---|
class |
EstimatorBase<E extends EstimatorBase<E,M>,M extends ModelBase<M>>
The base class for estimator implementations.
|
class |
ModelBase<M extends ModelBase<M>>
The base class for a machine learning model.
|
class |
PipelineStageBase<S extends PipelineStageBase<S>>
The base class for a stage in a pipeline, either an [[EstimatorBase]] or a [[TransformerBase]].
|
class |
TransformerBase<T extends TransformerBase<T>>
The base class for transformer implementations.
|
Modifier and Type | Method and Description |
---|---|
static List<ParamInfo> |
ExtractParamInfosUtil.extractParamInfos(WithParams s)
Extracts all ParamInfos defined in the given WithParams, including those in its superclasses
and interfaces.
|
Copyright © 2014–2021 The Apache Software Foundation. All rights reserved.