first commit
This commit is contained in:
15
rtdetrv2_pytorch/src/solver/__init__.py
Normal file
15
rtdetrv2_pytorch/src/solver/__init__.py
Normal file
@@ -0,0 +1,15 @@
|
||||
"""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,
|
||||
}
|
||||
Reference in New Issue
Block a user