cascade-rcnn_x101-64x4d_fpn_1x_coco.py 446 B

123456789101112131415
  1. _base_ = './cascade-rcnn_r50_fpn_1x_coco.py'
  2. model = dict(
  3. type='CascadeRCNN',
  4. backbone=dict(
  5. type='ResNeXt',
  6. depth=101,
  7. groups=64,
  8. base_width=4,
  9. num_stages=4,
  10. out_indices=(0, 1, 2, 3),
  11. frozen_stages=1,
  12. norm_cfg=dict(type='BN', requires_grad=True),
  13. style='pytorch',
  14. init_cfg=dict(
  15. type='Pretrained', checkpoint='open-mmlab://resnext101_64x4d')))