mirror of
https://github.com/open-mmlab/mmclassification.git
synced 2025-06-03 21:53:55 +08:00
7 lines
209 B
Python
7 lines
209 B
Python
|
from .augments import Augments
|
||
|
from .cutmix import BatchCutMixLayer
|
||
|
from .identity import Identity
|
||
|
from .mixup import BatchMixupLayer
|
||
|
|
||
|
__all__ = ['Augments', 'BatchCutMixLayer', 'Identity', 'BatchMixupLayer']
|