__init__.py 261 Bytes
Newer Older
mibaumgartner's avatar
WIP  
mibaumgartner committed
1
2
3
4
5
6
from typing import Mapping, Type
from nndet.utils.registry import Registry
from nndet.planning.experiment.base import PlannerType, AbstractPlanner
PLANNER_REGISTRY: Mapping[str, Type[PlannerType]] = Registry()

from nndet.planning.experiment.v001 import D3V001