yolov3_mobilenet_v3_large_ssld_270e_voc.yml 727 B

1234567891011121314151617181920212223242526272829
  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. pretrain_weights: https://paddledet.bj.bcebos.com/models/pretrained/MobileNetV3_large_x1_0_ssld_pretrained.pdparams
  10. weights: output/yolov3_mobilenet_v3_large_ssld_270e_voc/model_final
  11. # set collate_batch to false because ground-truth info is needed
  12. # on voc dataset and should not collate data in batch when batch size
  13. # is larger than 1.
  14. EvalReader:
  15. collate_batch: false
  16. LearningRate:
  17. base_lr: 0.001
  18. schedulers:
  19. - !PiecewiseDecay
  20. gamma: 0.1
  21. milestones:
  22. - 216
  23. - 243
  24. - !LinearWarmup
  25. start_factor: 0.
  26. steps: 1000