evalml.pipelines.components.BaselineRegressor¶
-
class
evalml.pipelines.components.
BaselineRegressor
(strategy='mean', random_state=0, **kwargs)[source]¶ Regressor that predicts using the specified strategy.
This is useful as a simple baseline regressor to compare with other regressors.
-
name
= 'Baseline Regressor'¶
-
model_family
= 'baseline'¶
-
supported_problem_types
= [<ProblemTypes.REGRESSION: 'regression'>]¶
-
hyperparameter_ranges
= {}¶
-
default_parameters
= {'strategy': 'mean'}¶
Instance attributes
feature_importance
Returns importance associated with each feature.
parameters
Returns the parameters which were used to initialize the component
Methods:
Baseline regressor that uses a simple strategy to make predictions.
Constructs a new component with the same parameters
Describe a component and its parameters
Fits component to data
Make predictions using selected features.
Make probability estimates for labels.
-