Source code for labelbox.schema.conflict_resolution_strategy

from enum import Enum


[docs]class ConflictResolutionStrategy(str, Enum): KeepExisting = "KEEP_EXISTING" OverrideWithAnnotations = "OVERRIDE_WITH_ANNOTATIONS" OverrideWithPredictions = "OVERRIDE_WITH_PREDICTIONS" @staticmethod def from_str(label: str) -> "ConflictResolutionStrategy": return ConflictResolutionStrategy[label]