Source code for evalml.pipelines.classification.logistic_regression_binary

from evalml.pipelines import BinaryClassificationPipeline


[docs]class LogisticRegressionBinaryPipeline(BinaryClassificationPipeline): """Logistic Regression Pipeline for binary classification.""" component_graph = ['Simple Imputer', 'One Hot Encoder', 'Standard Scaler', 'Logistic Regression Classifier']