dangminh214's picture
Clean initial commit (no large files, no LFS pointers)
b26e93d
raw
history blame contribute delete
341 Bytes
"""
Copied from RT-DETR (https://github.com/lyuwenyu/RT-DETR)
Copyright(c) 2023 lyuwenyu. All Rights Reserved.
"""
from typing import Dict
from ._solver import BaseSolver
from .clas_solver import ClasSolver
from .det_solver import DetSolver
TASKS: Dict[str, BaseSolver] = {
"classification": ClasSolver,
"detection": DetSolver,
}