grid-rcnn_x101-64x4d_fpn_gn-head_2x_coco.py 380 B

12345678910111213
  1. _base_ = './grid-rcnn_x101-32x4d_fpn_gn-head_2x_coco.py'
  2. model = dict(
  3. backbone=dict(
  4. type='ResNeXt',
  5. depth=101,
  6. groups=64,
  7. base_width=4,
  8. num_stages=4,
  9. out_indices=(0, 1, 2, 3),
  10. frozen_stages=1,
  11. style='pytorch',
  12. init_cfg=dict(
  13. type='Pretrained', checkpoint='open-mmlab://resnext101_64x4d')))