Spaces:
Runtime error
Runtime error
File size: 239 Bytes
f549064 |
1 2 3 4 5 6 7 8 |
# 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')
|