Initialize model with the pretrained model init_cfg = dict(type='Pretrained', checkpoint='torchvision://resnet50')More details can refer to the documentation in MMCV and MMCV PR #780
model = dict( type='FasterRCNN', backbone=dict( type='ResNet', depth=50, num_stages=4, out_indices=(0, 1, 2, 3), frozen_stages=1, norm_cfg=dict(type='BN', requires_grad=False), norm_eval=True, style='caffe', init_cfg=dict(type='Pretrained', checkpoint='open-mmlab://detect...
Initialize model with the pretrained model init_cfg = dict(type='Pretrained', checkpoint='torchvision://resnet50')More details can refer to the documentation in MMCV and MMCV PR #780