mirror of
https://github.com/open-mmlab/mmsegmentation.git
synced 2025-06-03 22:03:48 +08:00
* [Feature] Support MobileNetV2 backbone * Fixed import * Fixed test * Fixed test * Fixed dilate * upload model * update table * update table * update bibtex * update MMCV requirement
6 lines
192 B
Python
6 lines
192 B
Python
from .make_divisible import make_divisible
|
|
from .res_layer import ResLayer
|
|
from .self_attention_block import SelfAttentionBlock
|
|
|
|
__all__ = ['ResLayer', 'SelfAttentionBlock', 'make_divisible']
|