yolov3_mobilenet_v3_large_270e_voc.yml 605 B

12345678910111213141516171819202122232425262728
  1. _BASE_: [
  2. '../datasets/voc.yml',
  3. '../runtime.yml',
  4. '_base_/optimizer_270e.yml',
  5. '_base_/yolov3_mobilenet_v3_large.yml',
  6. '_base_/yolov3_reader.yml',
  7. ]
  8. snapshot_epoch: 5
  9. weights: output/yolov3_mobilenet_v3_large_270e_voc/model_final
  10. # set collate_batch to false because ground-truth info is needed
  11. # on voc dataset and should not collate data in batch when batch size
  12. # is larger than 1.
  13. EvalReader:
  14. collate_batch: false
  15. LearningRate:
  16. base_lr: 0.001
  17. schedulers:
  18. - !PiecewiseDecay
  19. gamma: 0.1
  20. milestones:
  21. - 216
  22. - 243
  23. - !LinearWarmup
  24. start_factor: 0.
  25. steps: 1000