yolov7_tiny_300e_coco.yml 380 Bytes
Newer Older
wangkx1's avatar
wangkx1 committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
_BASE_: [
  '../datasets/coco_detection.yml',
  '../runtime.yml',
  '_base_/optimizer_300e_tiny.yml',
  '_base_/yolov7_elannet.yml',
  '_base_/yolov7_tiny_reader.yml',
]
log_iter: 100
snapshot_epoch: 10
weights: output/yolov7_tiny_300e_coco/model_final

arch: tiny
act: LeakyReLU


TrainReader:
  batch_size: 16


YOLOv7Loss:
  box_weight: 0.05
  cls_weght: 0.5
  obj_weight: 1.0