Source code for evalml.objectives.multiclass_classification_objective
"""Base class for all multiclass classification objectives."""fromevalml.objectives.objective_baseimportObjectiveBasefromevalml.problem_typesimportProblemTypes
[docs]classMulticlassClassificationObjective(ObjectiveBase):"""Base class for all multiclass classification objectives."""problem_types=[ProblemTypes.MULTICLASS,ProblemTypes.TIME_SERIES_MULTICLASS]"""[ProblemTypes.MULTICLASS, ProblemTypes.TIME_SERIES_MULTICLASS]"""