faster-rcnn_r50_pafpn_1x_coco.py 200 B

12345678
  1. _base_ = '../faster_rcnn/faster-rcnn_r50_fpn_1x_coco.py'
  2. model = dict(
  3. neck=dict(
  4. type='PAFPN',
  5. in_channels=[256, 512, 1024, 2048],
  6. out_channels=256,
  7. num_outs=5))