PCB_RTDETR / engine /solver /__init__.py
mcthebest's picture
Update app, README, requirements; fix class names
e1e7af0 verified
raw
history blame contribute delete
343 Bytes
"""
Copied from RT-DETR (https://github.com/lyuwenyu/RT-DETR)
Copyright(c) 2023 lyuwenyu. All Rights Reserved.
"""
from ._solver import BaseSolver
from .clas_solver import ClasSolver
from .det_solver import DetSolver
from typing import Dict
TASKS :Dict[str, BaseSolver] = {
'classification': ClasSolver,
'detection': DetSolver,
}