faster-rcnn_r50_fpg-chn128_crop640-50e_coco.py 314 B

123456789
  1. _base_ = 'faster-rcnn_r50_fpg_crop640-50e_coco.py'
  2. norm_cfg = dict(type='BN', requires_grad=True)
  3. model = dict(
  4. neck=dict(out_channels=128, inter_channels=128),
  5. rpn_head=dict(in_channels=128),
  6. roi_head=dict(
  7. bbox_roi_extractor=dict(out_channels=128),
  8. bbox_head=dict(in_channels=128)))