lsj-200e_coco-detection.py 380 B

123456789101112131415161718
  1. _base_ = './lsj-100e_coco-detection.py'
  2. # 8x25=200e
  3. train_dataloader = dict(dataset=dict(times=8))
  4. # learning rate
  5. param_scheduler = [
  6. dict(
  7. type='LinearLR', start_factor=0.067, by_epoch=False, begin=0,
  8. end=1000),
  9. dict(
  10. type='MultiStepLR',
  11. begin=0,
  12. end=25,
  13. by_epoch=True,
  14. milestones=[22, 24],
  15. gamma=0.1)
  16. ]