yolov3_darknet53.yml 853 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. architecture: YOLOv3
  2. pretrain_weights: https://paddledet.bj.bcebos.com/models/pretrained/DarkNet53_pretrained.pdparams
  3. norm_type: sync_bn
  4. YOLOv3:
  5. backbone: DarkNet
  6. neck: YOLOv3FPN
  7. yolo_head: YOLOv3Head
  8. post_process: BBoxPostProcess
  9. DarkNet:
  10. depth: 53
  11. return_idx: [2, 3, 4]
  12. # use default config
  13. # YOLOv3FPN:
  14. YOLOv3Head:
  15. anchors: [[10, 13], [16, 30], [33, 23],
  16. [30, 61], [62, 45], [59, 119],
  17. [116, 90], [156, 198], [373, 326]]
  18. anchor_masks: [[6, 7, 8], [3, 4, 5], [0, 1, 2]]
  19. loss: YOLOv3Loss
  20. YOLOv3Loss:
  21. ignore_thresh: 0.7
  22. downsample: [32, 16, 8]
  23. label_smooth: false
  24. BBoxPostProcess:
  25. decode:
  26. name: YOLOBox
  27. conf_thresh: 0.005
  28. downsample_ratio: 32
  29. clip_bbox: true
  30. nms:
  31. name: MultiClassNMS
  32. keep_top_k: 100
  33. score_threshold: 0.01
  34. nms_threshold: 0.45
  35. nms_top_k: 1000