DefaultParamsReadable¶
- 
class 
pyspark.ml.util.DefaultParamsReadable¶ Helper trait for making simple
Paramstypes readable. If aParamsclass stores all data asParamvalues, then extending this trait will provide a default implementation of reading saved instances of the class. This only handles simpleParamtypes; e.g., it will not handlepyspark.sql.DataFrame. SeeDefaultParamsWritable, the counterpart to this class.Methods
load(path)Reads an ML instance from the input path, a shortcut of read().load(path).
read()Returns a DefaultParamsReader instance for this class.
Methods Documentation
- 
classmethod 
load(path: str) → RL¶ Reads an ML instance from the input path, a shortcut of read().load(path).
- 
classmethod 
read() → pyspark.ml.util.DefaultParamsReader[RL]¶ Returns a DefaultParamsReader instance for this class.
- 
classmethod