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 = ['Simple Imputer', 'One Hot Encoder', 'Random Forest Classifier']