evalml.pipelines.components.CatBoostRegressor¶
-
class
evalml.pipelines.components.
CatBoostRegressor
(n_estimators=10, eta=0.03, max_depth=6, bootstrap_type=None, silent=False, allow_writing_files=False, random_seed=0, n_jobs=- 1, **kwargs)[source]¶ CatBoost Regressor, a regressor that uses gradient-boosting on decision trees. CatBoost is an open-source library and natively supports categorical features.
For more information, check out https://catboost.ai/
-
name
= 'CatBoost Regressor'¶
-
model_family
= 'catboost'¶
-
supported_problem_types
= [<ProblemTypes.REGRESSION: 'regression'>, <ProblemTypes.TIME_SERIES_REGRESSION: 'time series regression'>]¶
-
hyperparameter_ranges
= {'eta': Real(low=1e-06, high=1, prior='uniform', transform='identity'), 'max_depth': Integer(low=4, high=10, prior='uniform', transform='identity'), 'n_estimators': Integer(low=4, high=100, prior='uniform', transform='identity')}¶
-
default_parameters
= {'allow_writing_files': False, 'bootstrap_type': None, 'eta': 0.03, 'max_depth': 6, 'n_estimators': 10, 'n_jobs': -1, 'silent': False}¶
-
predict_uses_y
= False¶
Instance attributes
feature_importance
Return an attribute of instance, which is of type owner.
needs_fitting
parameters
Returns the parameters which were used to initialize the component
Methods:
CatBoost Regressor.
Constructs a new component with the same parameters and random state.
Describe a component and its parameters
Fits component to data
Loads component at file path
Make predictions using selected features.
Make probability estimates for labels.
Saves component at file path
-