Source code for evalml.objectives.multiclass_classification_objective

"""Base class for all multiclass classification objectives."""
from evalml.objectives.objective_base import ObjectiveBase
from evalml.problem_types import ProblemTypes


[docs]class MulticlassClassificationObjective(ObjectiveBase): """Base class for all multiclass classification objectives.""" problem_types = [ProblemTypes.MULTICLASS, ProblemTypes.TIME_SERIES_MULTICLASS] """[ProblemTypes.MULTICLASS, ProblemTypes.TIME_SERIES_MULTICLASS]"""