You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

__init__.py 494 B

3 years ago
123456789
  1. # Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved
  2. from .cityscapes import load_cityscapes_instances
  3. from .coco import load_coco_json, load_sem_seg
  4. from .lvis import load_lvis_json, register_lvis_instances, get_lvis_instances_meta
  5. from .register_coco import register_coco_instances, register_coco_panoptic_separated
  6. from . import builtin # ensure the builtin datasets are registered
  7. __all__ = [k for k in globals().keys() if "builtin" not in k and not k.startswith("_")]

No Description