Source code for todd_tasks.object_detection.registries

__all__ = [
    'ODBBoxesRegistry',
    'ODDatasetRegistry',
    'ODModelRegistry',
]

from todd_torch.registries import DatasetRegistry, ModelRegistry

from ..registries import ODRegistry


[docs] class ODBBoxesRegistry(ODRegistry): pass
[docs] class ODDatasetRegistry(ODRegistry, DatasetRegistry): pass
[docs] class ODModelRegistry(ODRegistry, ModelRegistry): pass