File size: 501 Bytes
08ec965 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | # Copyright (c) Meta Platforms, Inc. and affiliates.
from . import datasets # ensure the builtin datasets are registered
from .detection_utils import * # isort:skip
from .build import (
build_batch_data_loader,
build_detection_train_loader,
build_detection_test_loader,
get_detection_dataset_dicts,
load_proposals_into_dataset,
print_instances_class_histogram,
)
from detectron2.data.common import *
__all__ = [k for k in globals().keys() if not k.startswith("_")] |