15 lines
284 B
Python
15 lines
284 B
Python
"""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,
|
|
} |