hubconf.py 996 字节
Newer Older
M
MegEngine Team 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
from official.vision.classification.resnet.model import (
    BasicBlock,
    Bottleneck,
    ResNet,
    resnet18,
    resnet34,
    resnet50,
    resnet101,
    resnet152,
    resnext50_32x4d,
    resnext101_32x8d,
)
from official.vision.classification.shufflenet.model import (
    shufflenet_v2_x0_5,
    shufflenet_v2_x1_0,
    shufflenet_v2_x1_5,
    shufflenet_v2_x2_0,
)

from official.nlp.bert.model import (
    uncased_L_12_H_768_A_12,
    cased_L_12_H_768_A_12,
    uncased_L_24_H_1024_A_16,
    cased_L_24_H_1024_A_16,
    chinese_L_12_H_768_A_12,
    multi_cased_L_12_H_768_A_12,
    wwm_uncased_L_24_H_1024_A_16,
    wwm_cased_L_24_H_1024_A_16,
)

31 32
from official.vision.detection.retinanet_res50_coco_1x_800size import (
    retinanet_res50_coco_1x_800size,
M
MegEngine Team 已提交
33
)
34
from official.vision.detection.models import RetinaNet
M
MegEngine Team 已提交
35 36 37 38 39 40
from official.vision.detection.tools.test import DetEvaluator

from official.vision.segmentation.deeplabv3plus import (
    deeplabv3plus_res101,
    DeepLabV3Plus,
)