项目文件夹

文件
2026-07-13 13:32:23 +08:00

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"