Source code for evalml.pipelines.classification.random_forest_binary
from evalml.pipelines import BinaryClassificationPipeline
[docs]class RFBinaryClassificationPipeline(BinaryClassificationPipeline):
"""Random Forest Pipeline for binary classification"""
custom_name = "Random Forest Binary Classification Pipeline"
component_graph = ['One Hot Encoder', 'Simple Imputer', 'RF Classifier Select From Model', 'Random Forest Classifier']