evalml.pipelines.components.LinearRegressor¶
-
class
evalml.pipelines.components.
LinearRegressor
(fit_intercept=True, normalize=False, n_jobs=-1, random_state=0)[source]¶ Linear Regressor
-
name
= 'Linear Regressor'¶
-
model_family
= 'linear_model'¶
-
supported_problem_types
= [<ProblemTypes.REGRESSION: 'regression'>]¶
-
hyperparameter_ranges
= {'fit_intercept': [True, False], 'normalize': [True, False]}¶
Instance attributes
feature_importances
Returns feature importances.
Methods:
Initialize self.
Describe a component and its parameters
Fits component to data
Make predictions using selected features.
Make probability estimates for labels.
-