mask-rcnn_r50_fpg-chn128_crop640-50e_coco.py 357 B

12345678910
  1. _base_ = 'mask-rcnn_r50_fpg_crop640-50e_coco.py'
  2. model = dict(
  3. neck=dict(out_channels=128, inter_channels=128),
  4. rpn_head=dict(in_channels=128),
  5. roi_head=dict(
  6. bbox_roi_extractor=dict(out_channels=128),
  7. bbox_head=dict(in_channels=128),
  8. mask_roi_extractor=dict(out_channels=128),
  9. mask_head=dict(in_channels=128)))