cvat-ai--cvat
14 行
283 B
Python
14 行
283 B
Python
# Copyright (C) 2022 Intel Corporation
|
|
# Copyright (C) CVAT.ai Corporation
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
import django.db.models as models
|
|
|
|
|
|
class FunctionKind(models.TextChoices):
|
|
DETECTOR = "detector"
|
|
INTERACTOR = "interactor"
|
|
REID = "reid"
|
|
TRACKER = "tracker"
|