__init__.py 618 字节
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
X
xiteng1988 已提交
7
from .slimfacenet import SlimFaceNet_A_x0_60, SlimFaceNet_B_x0_75, SlimFaceNet_C_x0_75
B
Bai Yifan 已提交
8
__all__ = [
9
    "model_list", "MobileNet", "ResNet34", "ResNet50", "MobileNetV2", "PVANet",
10
    "ResNet50_vd", "ResNet101_vd", "MobileNetV2_x0_25"
11 12
]
model_list = [
13 14
    'MobileNet', 'ResNet34', 'ResNet50', 'MobileNetV2', 'PVANet',
    'ResNet50_vd', "ResNet101_vd", "MobileNetV2_x0_25"
B
Bai Yifan 已提交
15
]