__init__.py 531 字节
Newer Older
1
from __future__ import absolute_import
2 3
from .mobilenet import MobileNet
from .resnet import ResNet34, ResNet50
4 5
from .resnet_vd import ResNet50_vd, ResNet101_vd
from .mobilenet_v2 import MobileNetV2_x0_25, MobileNetV2
W
whs 已提交
6
from .pvanet import PVANet
B
Bai Yifan 已提交
7
__all__ = [
8
    "model_list", "MobileNet", "ResNet34", "ResNet50", "MobileNetV2", "PVANet",
9
    "ResNet50_vd", "ResNet101_vd", "MobileNetV2_x0_25"
10 11
]
model_list = [
12 13
    'MobileNet', 'ResNet34', 'ResNet50', 'MobileNetV2', 'PVANet',
    'ResNet50_vd', "ResNet101_vd", "MobileNetV2_x0_25"
B
Bai Yifan 已提交
14
]