Source code for evalml.pipelines.multiclass_classification_pipeline
from evalml.pipelines.classification_pipeline import ClassificationPipeline
from evalml.problem_types import ProblemTypes
[docs]class MulticlassClassificationPipeline(ClassificationPipeline):
"""Pipeline subclass for all multiclass classification pipelines."""
problem_type = ProblemTypes.MULTICLASS