基于Yolov7的路面病害检测代码
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

31 行
1.5KB

  1. lr0: 0.01 # initial learning rate (SGD=1E-2, Adam=1E-3)
  2. lrf: 0.1 # final OneCycleLR learning rate (lr0 * lrf)
  3. momentum: 0.937 # SGD momentum/Adam beta1
  4. weight_decay: 0.0005 # optimizer weight decay 5e-4
  5. warmup_epochs: 3.0 # warmup epochs (fractions ok)
  6. warmup_momentum: 0.8 # warmup initial momentum
  7. warmup_bias_lr: 0.1 # warmup initial bias lr
  8. box: 0.05 # box loss gain
  9. cls: 0.3 # cls loss gain
  10. cls_pw: 1.0 # cls BCELoss positive_weight
  11. obj: 0.7 # obj loss gain (scale with pixels)
  12. obj_pw: 1.0 # obj BCELoss positive_weight
  13. iou_t: 0.20 # IoU training threshold
  14. anchor_t: 4.0 # anchor-multiple threshold
  15. # anchors: 3 # anchors per output layer (0 to ignore)
  16. fl_gamma: 0.0 # focal loss gamma (efficientDet default gamma=1.5)
  17. hsv_h: 0.015 # image HSV-Hue augmentation (fraction)
  18. hsv_s: 0.7 # image HSV-Saturation augmentation (fraction)
  19. hsv_v: 0.4 # image HSV-Value augmentation (fraction)
  20. degrees: 0.0 # image rotation (+/- deg)
  21. translate: 0.2 # image translation (+/- fraction)
  22. scale: 0.9 # image scale (+/- gain)
  23. shear: 0.0 # image shear (+/- deg)
  24. perspective: 0.0 # image perspective (+/- fraction), range 0-0.001
  25. flipud: 0.0 # image flip up-down (probability)
  26. fliplr: 0.5 # image flip left-right (probability)
  27. mosaic: 1.0 # image mosaic (probability)
  28. mixup: 0.15 # image mixup (probability)
  29. copy_paste: 0.0 # image copy paste (probability)
  30. paste_in: 0.15 # image copy paste (probability), use 0 for faster training
  31. loss_ota: 1 # use ComputeLossOTA, use 0 for faster training