liyy201912's picture
Upload folder using huggingface_hub
cc0dd3c
raw
history blame contribute delete
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')