__init__.py 624 B

123456789101112131415161718192021222324
  1. from .cub import CUB_Annotations
  2. from .nab import NAB_Annotations
  3. from .cars import CARS_Annotations
  4. from .inat import INAT19_Annotations
  5. from .flowers import FLOWERS_Annotations
  6. from .hed import HED_Annotations
  7. from .base import BaseAnnotations
  8. from cvargparse.utils import BaseChoiceType
  9. from functools import partial
  10. class AnnotationType(BaseChoiceType):
  11. CUB200 = CUB_Annotations
  12. NAB = NAB_Annotations
  13. CARS = CARS_Annotations
  14. FLOWERS = FLOWERS_Annotations
  15. HED = HED_Annotations
  16. INAT19 = INAT19_Annotations
  17. INAT19_MINI = partial(INAT19_Annotations)
  18. INAT19_TEST = partial(INAT19_Annotations)
  19. Default = CUB200