Source code for evalml.pipelines.classification.elasticnet_multiclass

from evalml.pipelines import MulticlassClassificationPipeline


[docs]class ENMulticlassPipeline(MulticlassClassificationPipeline): """Elastic Net Pipeline for multiclass classification problems.""" component_graph = ['One Hot Encoder', 'Simple Imputer', 'Elastic Net Classifier']