Model
Model
is the contract for a fitted model, i.e. a Transformer that was produced by an Estimator.
Model Contract
1 2 3 4 5 6 7 8 9 |
package org.apache.spark.ml abstract class Model[M] extends Transformer { def copy(extra: ParamMap): M } |
Method | Description |
---|---|
Used when… |
|
Estimator that produced this model. |