mirror of
https://github.com/open-mmlab/mmsegmentation.git
synced 2025-06-03 22:03:48 +08:00
* [Enhance] Unifed InvertedResidual in MobileNetV2 and FastSCNN * [Enhance] Unifed InvertedResidual in MobileNetV2 and FastSCNN
9 lines
266 B
Python
9 lines
266 B
Python
from .inverted_residual import InvertedResidual
|
|
from .make_divisible import make_divisible
|
|
from .res_layer import ResLayer
|
|
from .self_attention_block import SelfAttentionBlock
|
|
|
|
__all__ = [
|
|
'ResLayer', 'SelfAttentionBlock', 'make_divisible', 'InvertedResidual'
|
|
]
|