yolov3_mobilenet_v1.yml 914 B

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