Source code for evalml.objectives.multiclass_classification_objective

from .objective_base import ObjectiveBase

from evalml.problem_types import ProblemTypes


[docs]class MulticlassClassificationObjective(ObjectiveBase): """Base class for all multiclass classification objectives. problem_type (ProblemTypes): Type of problem this objective is. Set to ProblemTypes.MULTICLASS. """ problem_type = ProblemTypes.MULTICLASS