mask-rcnn_x101-32x4d-syncbn-gcb-r4-c3-c5_fpn_1x_coco.py 375 B

1234567891011
  1. _base_ = '../mask_rcnn/mask-rcnn_x101-32x4d_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. / 4),
  9. stages=(False, True, True, True),
  10. position='after_conv3')
  11. ]))