mirror of
https://github.com/open-mmlab/mmclassification.git
synced 2025-06-03 21:53:55 +08:00
12 lines
205 B
Python
12 lines
205 B
Python
from .resnet import ResNet, ResNetV1d
|
|
from .resnext import ResNeXt
|
|
from .shufflenet_v2 import ShuffleNetv2
|
|
|
|
__all__ = [
|
|
'ResNet',
|
|
'ResNeXt',
|
|
'ResNetV1d',
|
|
'ResNetV1d',
|
|
'ShuffleNetv2',
|
|
]
|