yolov3_darknet53.yml 933 字节
Newer Older
F
FDInSky 已提交
1
architecture: YOLOv3
W
wangguanzhong 已提交
2
pretrain_weights: https://paddle-imagenet-models-name.bj.bcebos.com/DarkNet53_pretrained.tar
F
FDInSky 已提交
3 4
weights: output/yolov3_darknet/model_final
use_fine_grained_loss: false
W
wangguanzhong 已提交
5
load_static_weights: True
F
FDInSky 已提交
6 7 8

YOLOv3:
  backbone: DarkNet
9
  neck: YOLOv3FPN
F
FDInSky 已提交
10
  yolo_head: YOLOv3Head
11
  post_process: BBoxPostProcess
F
FDInSky 已提交
12 13 14

DarkNet:
  depth: 53
W
wangguanzhong 已提交
15
  return_idx: [2, 3, 4]
F
FDInSky 已提交
16

17 18 19
YOLOv3FPN:
  feat_channels: [1024, 768, 384]

F
FDInSky 已提交
20
YOLOv3Head:
21 22 23 24 25
  anchors: [10, 13, 16, 30, 33, 23, 30, 61, 62, 45, 59, 119, 116, 90, 156, 198, 373, 326]
  anchor_masks: [[6, 7, 8], [3, 4, 5], [0, 1, 2]]
  loss: YOLOv3Loss

YOLOv3Loss:
W
wangguanzhong 已提交
26 27 28
  ignore_thresh: 0.7
  downsample: 32
  label_smooth: true
F
FDInSky 已提交
29

30 31 32 33 34
BBoxPostProcess:
  decode:
    name: YOLOBox
    conf_thresh: 0.005
    downsample_ratio: 32
35
    clip_bbox: true
36 37 38 39 40 41 42 43
  nms:
    name: MultiClassNMS
    keep_top_k: 100
    score_threshold: 0.01
    nms_threshold: 0.45
    nms_top_k: 1000
    normalized: false
    background_label: -1