DefaultParamsWritable¶
-
class
pyspark.ml.util.
DefaultParamsWritable
¶ Helper trait for making simple
Params
types writable. If aParams
class stores all data asParam
values, then extending this trait will provide a default implementation of writing saved instances of the class. This only handles simpleParam
types; e.g., it will not handlepyspark.sql.DataFrame
. SeeDefaultParamsReadable
, the counterpart to this class.Methods
save
(path)Save this ML instance to the given path, a shortcut of ‘write().save(path)’.
write
()Returns a DefaultParamsWriter instance for this class.
Methods Documentation
-
save
(path: str) → None¶ Save this ML instance to the given path, a shortcut of ‘write().save(path)’.
-
write
() → pyspark.ml.util.MLWriter¶ Returns a DefaultParamsWriter instance for this class.
-