mask-rcnn_r101-syncbn-gcb-r16-c3-c5_fpn_1x_coco.py 370 B

1234567891011
  1. _base_ = '../mask_rcnn/mask-rcnn_r101_fpn_1x_coco.py'
  2. model = dict(
  3. backbone=dict(
  4. norm_cfg=dict(type='SyncBN', requires_grad=True),
  5. norm_eval=False,
  6. plugins=[
  7. dict(
  8. cfg=dict(type='ContextBlock', ratio=1. / 16),
  9. stages=(False, True, True, True),
  10. position='after_conv3')
  11. ]))