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 = ['One Hot Encoder', 'Simple Imputer', 'Standard Scaler', 'Logistic Regression Classifier']