Source code for super_gradients.common.data_types.enum.deep_learning_task
from enum import Enum
[docs]class DeepLearningTask(str, Enum):
CLASSIFICATION = 'classification'
SEMANTIC_SEGMENTATION = 'semantic_segmentation'
OBJECT_DETECTION = 'object_detection'
DEPTH_ESTIMATION = 'depth_estimation'
POSE_ESTIMATION = 'pose_estimation'
NLP = 'nlp'
OTHER = 'other'