mirror of
https://github.com/open-mmlab/mmsegmentation.git
synced 2025-06-03 22:03:48 +08:00
6 lines
171 B
Python
6 lines
171 B
Python
|
from .hrnet import HRNet
|
||
|
from .resnet import ResNet, ResNetV1c, ResNetV1d
|
||
|
from .resnext import ResNeXt
|
||
|
|
||
|
__all__ = ['ResNet', 'ResNetV1c', 'ResNetV1d', 'ResNeXt', 'HRNet']
|