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_types (list(ProblemType)): List of problem types that this objective is defined for. Set to [ProblemTypes.MULTICLASS]. """ problem_types = [ProblemTypes.MULTICLASS]