Source code for evalml.pipelines.classification.random_forest_multiclass

from evalml.pipelines import MulticlassClassificationPipeline


[docs]class RFMulticlassClassificationPipeline(MulticlassClassificationPipeline): """Random Forest Pipeline for multiclass classification""" custom_name = "Random Forest Multiclass Classification Pipeline" component_graph = ['One Hot Encoder', 'Simple Imputer', 'RF Classifier Select From Model', 'Random Forest Classifier']