mmclassification/mmcls/models/backbones/__init__.py

5 lines
113 B
Python
Raw Normal View History

2020-06-12 14:40:27 +08:00
from .resnet import ResNet, ResNetV1d
2020-06-14 12:08:37 +08:00
from .resnext import ResNeXt
2020-06-12 14:40:27 +08:00
2020-06-14 12:08:37 +08:00
__all__ = ['ResNet', 'ResNeXt', 'ResNetV1d']