mirror of https://github.com/RE-OWOD/RE-OWOD
24 lines
763 B
Python
24 lines
763 B
Python
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved
|
|
|
|
from .build import (
|
|
build_detection_test_loader,
|
|
build_detection_train_loader,
|
|
build_combined_loader,
|
|
build_frame_selector,
|
|
build_inference_based_loaders,
|
|
has_inference_based_loaders,
|
|
BootstrapDatasetFactoryCatalog,
|
|
)
|
|
from .combined_loader import CombinedDataLoader
|
|
from .dataset_mapper import DatasetMapper
|
|
from .inference_based_loader import InferenceBasedLoader, ScoreBasedFilter
|
|
from .utils import is_relative_local_path, maybe_prepend_base_path
|
|
|
|
# ensure the builtin datasets are registered
|
|
from . import datasets
|
|
|
|
# ensure the bootstrap datasets builders are registered
|
|
from . import build
|
|
|
|
__all__ = [k for k in globals().keys() if not k.startswith("_")]
|