KyanChen's picture
Upload 1861 files
3b96cb1
raw
history blame
239 Bytes
# 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')