faster-rcnn_r50-caffe-dc5_ms-3x_coco.py 505 B

123456789101112131415161718
  1. _base_ = './faster-rcnn_r50-caffe-dc5_ms-1x_coco.py'
  2. # MMEngine support the following two ways, users can choose
  3. # according to convenience
  4. # param_scheduler = [
  5. # dict(
  6. # type='LinearLR', start_factor=0.001, by_epoch=False, begin=0, end=500), # noqa
  7. # dict(
  8. # type='MultiStepLR',
  9. # begin=0,
  10. # end=12,
  11. # by_epoch=True,
  12. # milestones=[28, 34],
  13. # gamma=0.1)
  14. # ]
  15. _base_.param_scheduler[1].milestones = [28, 34]
  16. train_cfg = dict(max_epochs=36)