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 606 B

3 years ago
123456789101112131415161718
  1. # Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved
  2. from . import transforms # isort:skip
  3. from .build import (
  4. build_detection_test_loader,
  5. build_detection_train_loader,
  6. get_detection_dataset_dicts,
  7. load_proposals_into_dataset,
  8. print_instances_class_histogram,
  9. )
  10. from .catalog import DatasetCatalog, MetadataCatalog
  11. from .common import DatasetFromList, MapDataset
  12. from .dataset_mapper import DatasetMapper
  13. # ensure the builtin datasets are registered
  14. from . import datasets, samplers # isort:skip
  15. __all__ = [k for k in globals().keys() if not k.startswith("_")]

No Description