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.

retinanet_r50_fpn_90k_coco.py 364 B

2 years ago
123456789101112131415
  1. _base_ = 'retinanet_r50_fpn_1x_coco.py'
  2. # learning policy
  3. lr_config = dict(
  4. policy='step',
  5. warmup='linear',
  6. warmup_iters=500,
  7. warmup_ratio=0.001,
  8. step=[60000, 80000])
  9. # Runner type
  10. runner = dict(_delete_=True, type='IterBasedRunner', max_iters=90000)
  11. checkpoint_config = dict(interval=10000)
  12. evaluation = dict(interval=10000, metric='bbox')

No Description

Contributors (3)