hubconf.py 1.9 KB
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 33
from official.vision.detection.faster_rcnn_fpn_res50_coco_1x_800size import (
    faster_rcnn_fpn_res50_coco_1x_800size,
)
34 35 36
from official.vision.detection.faster_rcnn_fpn_res50_coco_1x_800size_syncbn import (
    faster_rcnn_fpn_res50_coco_1x_800size_syncbn,
)
37

38 39
from official.vision.detection.retinanet_res50_coco_1x_800size import (
    retinanet_res50_coco_1x_800size,
M
MegEngine Team 已提交
40
)
41 42 43 44 45 46 47 48 49 50
from official.vision.detection.retinanet_res50_coco_1x_800size_syncbn import (
    retinanet_res50_coco_1x_800size_syncbn,
)
# TODO: need pretrained weights
# from official.vision.detection.retinanet_res50_objects365_1x_800size import (
#     retinanet_res50_objects365_1x_800size,
# )
# from official.vision.detection.retinanet_res50_voc_1x_800size import (
#     retinanet_res50_voc_1x_800size,
# )
51 52

from official.vision.detection.models import FasterRCNN, RetinaNet
M
MegEngine Team 已提交
53 54 55 56 57 58
from official.vision.detection.tools.test import DetEvaluator

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

from official.vision.keypoints.models import (
61 62 63 64
    simplebaseline_res50,
    simplebaseline_res101,
    simplebaseline_res152,
    mspn_4stage
65
)
G
greatlog 已提交
66 67

from official.vision.keypoints.inference import KeypointEvaluator
68 69

from official.quantization.models import quantized_resnet18