10 lines
334 B
Python
10 lines
334 B
Python
# Copyright (c) OpenMMLab. All rights reserved.
|
|
from .augments import Augments
|
|
from .cutmix import BatchCutMixLayer
|
|
from .identity import Identity
|
|
from .mixup import BatchMixupLayer
|
|
from .resizemix import BatchResizeMixLayer
|
|
|
|
__all__ = ('Augments', 'BatchCutMixLayer', 'Identity', 'BatchMixupLayer',
|
|
'BatchResizeMixLayer')
|