tpcp.get_param_names#
- tpcp.get_param_names(cls: Type[tpcp._base._BaseTpcpObject]) List[str] [source]#
Get parameter names for the object.
The parameters of an algorithm/pipeline are defined based on its
__init__
method. All parameters of this method are considered parameters of the algorithm.- Returns
- param_names
List of parameter names of the algorithm
Notes
Adopted based on
sklearn.base.BaseEstimator._get_param_names
.