# -*- coding: utf-8 -*- # MegEngine is Licensed under the Apache License, Version 2.0 (the "License") # # Copyright (c) 2014-2020 Megvii Inc. All rights reserved. # # Unless required by applicable law or agreed to in writing, # software distributed under the License is distributed on an # "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. from megengine import hub from official.vision.detection import models @hub.pretrained( "https://data.megengine.org.cn/models/weights/" "retinanet_d3f58dce_res50_1x_800size_36dot0.pkl" ) def retinanet_res50_coco_1x_800size(batch_size=1, **kwargs): r""" RetinaNet trained from COCO dataset. `"RetinaNet" `_ `"FPN" `_ `"COCO" `_ """ return models.RetinaNet(models.RetinaNetConfig(), batch_size=batch_size, **kwargs) Net = models.RetinaNet Cfg = models.RetinaNetConfig