from .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]