evalml.pipelines.components.LogisticRegressionClassifier¶
-
class
evalml.pipelines.components.
LogisticRegressionClassifier
(penalty='l2', C=1.0, n_jobs=-1, random_state=0)[source]¶ Logistic Regression Classifier
-
name
= 'Logistic Regression Classifier'¶
-
model_family
= 'linear_model'¶
-
supported_problem_types
= [<ProblemTypes.BINARY: 'binary'>, <ProblemTypes.MULTICLASS: 'multiclass'>]¶
-
hyperparameter_ranges
= {'C': Real(low=0.01, high=10, prior='uniform', transform='identity'), 'penalty': ['l2']}¶
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.
-