mirror of
https://github.com/open-mmlab/mmclassification.git
synced 2025-06-03 21:53:55 +08:00
8 lines
239 B
Python
8 lines
239 B
Python
# Copyright (c) OpenMMLab. All rights reserved.
|
|
from .cutmix import CutMix
|
|
from .mixup import Mixup
|
|
from .resizemix import ResizeMix
|
|
from .wrapper import RandomBatchAugment
|
|
|
|
__all__ = ('RandomBatchAugment', 'CutMix', 'Mixup', 'ResizeMix')
|