__init__.py 267 字节
Newer Older
1 2
from .mobilenet import MobileNet
from .resnet import ResNet34, ResNet50
B
Bai Yifan 已提交
3
from .resnet_vd import ResNet50_vd
4
from .mobilenet_v2 import MobileNetV2
W
whs 已提交
5
from .pvanet import PVANet
6

B
Bai Yifan 已提交
7 8 9
__all__ = [
    'MobileNet', 'ResNet34', 'ResNet50', 'MobileNetV2', 'PVANet', 'ResNet50_vd'
]