Saves this ML instance to the input path, a shortcut of write.save(path)
.
Saves this ML instance to the input path, a shortcut of write.save(path)
.
Returns an MLWriter
instance for this ML instance.
Returns an MLWriter
instance for this ML instance.
:: DeveloperApi ::
Helper trait for making simple
Params
types writable. If aParams
class stores all data as org.apache.spark.ml.param.Param values, then extending this trait will provide a default implementation of writing saved instances of the class. This only handles simple org.apache.spark.ml.param.Param types; e.g., it will not handle org.apache.spark.sql.Dataset.DefaultParamsReadable
, the counterpart to this trait