get_param_names#

tpcp.get_param_names(obj: type[_BaseTpcpObject] | _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.