fast-rcnn_r50_fpn_2x_coco.py 329 B

1234567891011121314
  1. _base_ = './fast-rcnn_r50_fpn_1x_coco.py'
  2. train_cfg = dict(max_epochs=24)
  3. param_scheduler = [
  4. dict(
  5. type='LinearLR', start_factor=0.001, by_epoch=False, begin=0, end=500),
  6. dict(
  7. type='MultiStepLR',
  8. begin=0,
  9. end=24,
  10. by_epoch=True,
  11. milestones=[16, 22],
  12. gamma=0.1)
  13. ]