yolov3_darknet53.yml 1004 字节
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
W
wangxinxin08 已提交
6
norm_type: sync_bn
F
FDInSky 已提交
7 8 9

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

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

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

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

YOLOv3Loss:
W
wangguanzhong 已提交
29
  ignore_thresh: 0.7
30
  downsample: [32, 16, 8]
W
wangxinxin08 已提交
31
  label_smooth: false
F
FDInSky 已提交
32

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