交通事故检测代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
1.4KB

  1. # parameters
  2. #nc: 80 # number of classes
  3. nc: 1 # number of classes
  4. depth_multiple: 0.33 # model depth multiple
  5. width_multiple: 0.50 # layer channel multiple
  6. # anchors
  7. anchors:
  8. - [10,13, 16,30, 33,23] # P3/8
  9. - [30,61, 62,45, 59,119] # P4/16
  10. - [116,90, 156,198, 373,326] # P5/32
  11. # YOLOv5 backbone
  12. backbone:
  13. # [from, number, module, args]
  14. [[-1, 1, Focus, [64, 3]], # 0-P1/2
  15. [-1, 1, Conv, [128, 3, 2]], # 1-P2/4
  16. [-1, 3, C3, [128]],
  17. [-1, 1, Conv, [256, 3, 2]], # 3-P3/8
  18. [-1, 9, C3, [256]],
  19. [-1, 1, Conv, [512, 3, 2]], # 5-P4/16
  20. [-1, 9, C3, [512]],
  21. [-1, 1, Conv, [1024, 3, 2]], # 7-P5/32
  22. [-1, 1, SPP, [1024, [5, 9, 13]]],
  23. [-1, 3, C3, [1024, False]], # 9
  24. ]
  25. # YOLOv5 head
  26. head:
  27. [[-1, 1, Conv, [512, 1, 1]],
  28. [-1, 1, nn.Upsample, [None, 2, 'nearest']],
  29. [[-1, 6], 1, Concat, [1]], # cat backbone P4
  30. [-1, 3, C3, [512, False]], # 13
  31. [-1, 1, Conv, [256, 1, 1]],
  32. [-1, 1, nn.Upsample, [None, 2, 'nearest']],
  33. [[-1, 4], 1, Concat, [1]], # cat backbone P3
  34. [-1, 3, C3, [256, False]], # 17 (P3/8-small)
  35. [-1, 1, Conv, [256, 3, 2]],
  36. [[-1, 14], 1, Concat, [1]], # cat head P4
  37. [-1, 3, C3, [512, False]], # 20 (P4/16-medium)
  38. [-1, 1, Conv, [512, 3, 2]],
  39. [[-1, 10], 1, Concat, [1]], # cat head P5
  40. [-1, 3, C3, [1024, False]], # 23 (P5/32-large)
  41. [[17, 20, 23], 1, Detect, [nc, anchors]], # Detect(P3, P4, P5)
  42. ]