mirror of
https://github.com/open-mmlab/mmclassification.git
synced 2025-06-03 21:53:55 +08:00
* add mytrain.py for test * test before layers * test attr in layers * test classifier * delete mytrain.py * add patchembed and hybridembed * add patchembed and hybridembed to __init__ * test patchembed and hybridembed * fix some comments
14 lines
499 B
Python
14 lines
499 B
Python
from .augment.augments import Augments
|
|
from .channel_shuffle import channel_shuffle
|
|
from .embed import HybridEmbed, PatchEmbed
|
|
from .helpers import to_2tuple, to_3tuple, to_4tuple, to_ntuple
|
|
from .inverted_residual import InvertedResidual
|
|
from .make_divisible import make_divisible
|
|
from .se_layer import SELayer
|
|
|
|
__all__ = [
|
|
'channel_shuffle', 'make_divisible', 'InvertedResidual', 'SELayer',
|
|
'to_ntuple', 'to_2tuple', 'to_3tuple', 'to_4tuple', 'Augments',
|
|
'HybridEmbed', 'PatchEmbed'
|
|
]
|