__init__.py 212 B

12345678910
  1. from .cub import CUB_Annotations
  2. from .nab import NAB_Annotations
  3. from cvargparse.utils import BaseChoiceType
  4. class AnnotationType(BaseChoiceType):
  5. NAB = NAB_Annotations
  6. CUB = CUB_Annotations
  7. Default = CUB