Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

yolov5l.yaml 1.4 KB

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
  1. # Ultralytics 🚀 AGPL-3.0 License - https://ultralytics.com/license
  2. # Parameters
  3. nc: 80 # number of classes
  4. depth_multiple: 1.0 # model depth multiple
  5. width_multiple: 1.0 # layer channel multiple
  6. anchors:
  7. - [10, 13, 16, 30, 33, 23] # P3/8
  8. - [30, 61, 62, 45, 59, 119] # P4/16
  9. - [116, 90, 156, 198, 373, 326] # P5/32
  10. # YOLOv5 v6.0 backbone
  11. backbone:
  12. # [from, number, module, args]
  13. [
  14. [-1, 1, Conv, [64, 6, 2, 2]], # 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, 6, 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, 3, C3, [1024]],
  23. [-1, 1, SPPF, [1024, 5]], # 9
  24. ]
  25. # YOLOv5 v6.0 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. ]
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...