faster-rcnn_x50-32x4d_fpn_gn-ws-all_1x_coco.py 544 B

123456789101112131415161718
  1. _base_ = './faster-rcnn_r50_fpn_gn-ws-all_1x_coco.py'
  2. conv_cfg = dict(type='ConvWS')
  3. norm_cfg = dict(type='GN', num_groups=32, requires_grad=True)
  4. model = dict(
  5. backbone=dict(
  6. type='ResNeXt',
  7. depth=50,
  8. groups=32,
  9. base_width=4,
  10. num_stages=4,
  11. out_indices=(0, 1, 2, 3),
  12. frozen_stages=1,
  13. style='pytorch',
  14. conv_cfg=conv_cfg,
  15. norm_cfg=norm_cfg,
  16. init_cfg=dict(
  17. type='Pretrained',
  18. checkpoint='open-mmlab://jhu/resnext50_32x4d_gn_ws')))