Swin-Transformer-Object-Detection / configs /gfl /gfl_r101_fpn_mstrain_2x_coco.py
ZJF-Thunder
添加文件
e26e560
raw
history blame contribute delete
346 Bytes
_base_ = './gfl_r50_fpn_mstrain_2x_coco.py'
model = dict(
pretrained='torchvision://resnet101',
backbone=dict(
type='ResNet',
depth=101,
num_stages=4,
out_indices=(0, 1, 2, 3),
frozen_stages=1,
norm_cfg=dict(type='BN', requires_grad=True),
norm_eval=True,
style='pytorch'))