MQ-Det/maskrcnn_benchmark/data/samplers/__init__.py

7 lines
334 B
Python
Raw Normal View History

2023-10-07 23:02:26 +08:00
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
from .distributed import DistributedSampler
from .grouped_batch_sampler import GroupedBatchSampler
from .iteration_based_batch_sampler import IterationBasedBatchSampler
__all__ = ["DistributedSampler", "GroupedBatchSampler", "IterationBasedBatchSampler"]