Source code for evalml.pipelines.classification.logistic_regression

from evalml.pipelines import PipelineBase


[docs]class LogisticRegressionPipeline(PipelineBase): """Logistic Regression Pipeline for both binary and multiclass classification""" component_graph = ['One Hot Encoder', 'Simple Imputer', 'Standard Scaler', 'Logistic Regression Classifier'] supported_problem_types = ['binary', 'multiclass']