yolox_crn_s_300e_coco.yml 654 B

12345678910111213141516171819202122232425262728
  1. _BASE_: [
  2. '../datasets/coco_detection.yml',
  3. '../runtime.yml',
  4. './_base_/optimizer_300e.yml',
  5. './_base_/yolox_cspdarknet.yml',
  6. './_base_/yolox_reader.yml'
  7. ]
  8. depth_mult: 0.33
  9. width_mult: 0.50
  10. log_iter: 100
  11. snapshot_epoch: 10
  12. weights: output/yolox_crn_s_300e_coco/model_final
  13. pretrain_weights: https://paddledet.bj.bcebos.com/models/pretrained/CSPResNetb_s_pretrained.pdparams
  14. YOLOX:
  15. backbone: CSPResNet
  16. neck: YOLOCSPPAN
  17. head: YOLOXHead
  18. size_stride: 32
  19. size_range: [15, 25] # multi-scale range [480*480 ~ 800*800]
  20. CSPResNet:
  21. layers: [3, 6, 6, 3]
  22. channels: [64, 128, 256, 512, 1024]
  23. return_idx: [1, 2, 3]
  24. use_large_stem: True