TensorRT转化代码
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

40 Zeilen
1.2KB

  1. # Parameters
  2. nc: 80 # number of classes
  3. depth_multiple: 1.0 # model depth multiple
  4. width_multiple: 1.0 # layer channel multiple
  5. anchors:
  6. - [10,14, 23,27, 37,58] # P4/16
  7. - [81,82, 135,169, 344,319] # P5/32
  8. # YOLOv3-tiny backbone
  9. backbone:
  10. # [from, number, module, args]
  11. [[-1, 1, Conv, [16, 3, 1]], # 0
  12. [-1, 1, nn.MaxPool2d, [2, 2, 0]], # 1-P1/2
  13. [-1, 1, Conv, [32, 3, 1]],
  14. [-1, 1, nn.MaxPool2d, [2, 2, 0]], # 3-P2/4
  15. [-1, 1, Conv, [64, 3, 1]],
  16. [-1, 1, nn.MaxPool2d, [2, 2, 0]], # 5-P3/8
  17. [-1, 1, Conv, [128, 3, 1]],
  18. [-1, 1, nn.MaxPool2d, [2, 2, 0]], # 7-P4/16
  19. [-1, 1, Conv, [256, 3, 1]],
  20. [-1, 1, nn.MaxPool2d, [2, 2, 0]], # 9-P5/32
  21. [-1, 1, Conv, [512, 3, 1]],
  22. [-1, 1, nn.ZeroPad2d, [[0, 1, 0, 1]]], # 11
  23. [-1, 1, nn.MaxPool2d, [2, 1, 0]], # 12
  24. ]
  25. # YOLOv3-tiny head
  26. head:
  27. [[-1, 1, Conv, [1024, 3, 1]],
  28. [-1, 1, Conv, [256, 1, 1]],
  29. [-1, 1, Conv, [512, 3, 1]], # 15 (P5/32-large)
  30. [-2, 1, Conv, [128, 1, 1]],
  31. [-1, 1, nn.Upsample, [None, 2, 'nearest']],
  32. [[-1, 8], 1, Concat, [1]], # cat backbone P4
  33. [-1, 1, Conv, [256, 3, 1]], # 19 (P4/16-medium)
  34. [[19, 15], 1, Detect, [nc, anchors]], # Detect(P4, P5)
  35. ]