mirror of
https://github.com/open-mmlab/mmpretrain.git
synced 2025-06-03 14:59:18 +08:00
* add itp timm * minor update * minor update * minor update * add rep aug, minor update on configs * minor update * add target threshold * add decaymulti * minor update * minor update * add lbl smooth * update lr * reorganize config files and code * minor bugfixes * remove unused parts and minor fixes on cfg * critical bugfix, add test and cfg update * refactor code * update doc string * remove duplicate code * refactor drop path in resnet * rename * Modify configs and add README&metafile * Update metafile Co-authored-by: mzr1996 <mzr1996@163.com>
8 lines
257 B
Python
8 lines
257 B
Python
# Copyright (c) OpenMMLab. All rights reserved.
|
|
from .augments import Augments
|
|
from .cutmix import BatchCutMixLayer
|
|
from .identity import Identity
|
|
from .mixup import BatchMixupLayer
|
|
|
|
__all__ = ('Augments', 'BatchCutMixLayer', 'Identity', 'BatchMixupLayer')
|