# -*- 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 class CustomRetinaNetConfig(models.RetinaNetConfig): def __init__(self): super().__init__() self.backbone = "resnext101_32x8d" # ------------------------ training cfg ---------------------- # self.max_epoch = 36 self.lr_decay_stages = [24, 32, 34] @hub.pretrained( "https://data.megengine.org.cn/models/weights/" "retinanet_resx101_coco_2x_800size_41dot8_f92909a1.pkl" ) def retinanet_resx101_coco_2x_800size(batch_size=1, **kwargs): r""" RetinaNet trained from COCO dataset. `"RetinaNet" `_ `"FPN" `_ `"COCO" `_ """ return models.RetinaNet(CustomRetinaNetConfig(), batch_size=batch_size, **kwargs) Net = models.RetinaNet Cfg = CustomRetinaNetConfig