fcos_hrnetv2p-w32-gn-head_4xb4-2x_coco.py 392 B

12345678910111213141516
  1. _base_ = './fcos_hrnetv2p-w32-gn-head_4xb4-1x_coco.py'
  2. # learning policy
  3. max_epochs = 24
  4. train_cfg = dict(max_epochs=max_epochs)
  5. param_scheduler = [
  6. dict(
  7. type='LinearLR', start_factor=0.001, by_epoch=False, begin=0, end=500),
  8. dict(
  9. type='MultiStepLR',
  10. begin=0,
  11. end=max_epochs,
  12. by_epoch=True,
  13. milestones=[16, 22],
  14. gamma=0.1)
  15. ]