pyspark.ml.util.
DefaultParamsReadable
Helper trait for making simple Params types readable. If a Params class stores all data as Param values, then extending this trait will provide a default implementation of reading saved instances of the class. This only handles simple Param types; e.g., it will not handle pyspark.sql.DataFrame. See DefaultParamsWritable, the counterpart to this class.
Params
Param
pyspark.sql.DataFrame
DefaultParamsWritable
New in version 2.3.0.
Methods
load(path)
load
Reads an ML instance from the input path, a shortcut of read().load(path).
read()
read
Returns a DefaultParamsReader instance for this class.
Methods Documentation