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

2 years ago
123456789
  1. # Copyright (c) OpenMMLab. All rights reserved.
  2. from .distributed_sampler import DistributedSampler
  3. from .group_sampler import DistributedGroupSampler, GroupSampler
  4. from .infinite_sampler import InfiniteBatchSampler, InfiniteGroupBatchSampler
  5. __all__ = [
  6. 'DistributedSampler', 'DistributedGroupSampler', 'GroupSampler',
  7. 'InfiniteGroupBatchSampler', 'InfiniteBatchSampler'
  8. ]

No Description

Contributors (3)