14 lines
487 B
Python
Raw Normal View History

2020-06-15 16:42:15 +08:00
from .channel_shuffle import channel_shuffle
from .cutmix import BatchCutMixLayer
from .helpers import to_2tuple, to_3tuple, to_4tuple, to_ntuple
2020-06-30 15:50:36 +08:00
from .inverted_residual import InvertedResidual
2020-06-15 16:42:15 +08:00
from .make_divisible import make_divisible
from .mixup import BatchMixupLayer
2020-06-30 15:50:36 +08:00
from .se_layer import SELayer
2020-06-15 16:42:15 +08:00
__all__ = [
'channel_shuffle', 'make_divisible', 'InvertedResidual', 'BatchMixupLayer',
'BatchCutMixLayer', 'SELayer', 'to_ntuple', 'to_2tuple', 'to_3tuple',
'to_4tuple'
]