You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

scnet_x101_64x4d_fpn_20e_coco.py 440 B

2 years ago
123456789101112131415
  1. _base_ = './scnet_r50_fpn_20e_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. norm_cfg=dict(type='BN', requires_grad=True),
  12. norm_eval=True,
  13. style='pytorch',
  14. init_cfg=dict(
  15. type='Pretrained', checkpoint='open-mmlab://resnext101_64x4d')))

No Description

Contributors (3)