M
- The class type of the Model implementation itself, used by WithParams
@PublicEvolving public interface Model<M extends Model<M>> extends Transformer<M>
Transformer
except how it is created. While ordinary transformers
are defined by specifying the parameters directly, a model is usually generated by an Estimator
when Estimator.fit(org.apache.flink.table.api.TableEnvironment, Table)
is
invoked.
We separate Model from Transformer
in order to support potential model specific logic
such as linking a Model to the Estimator
from which the model was generated.
Modifier and Type | Method and Description |
---|---|
default void |
loadJson(String json) |
default String |
toJson() |
transform
get, getParams, set
Copyright © 2014–2021 The Apache Software Foundation. All rights reserved.