You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-[ ][YOLO-NAS](https://github.com/Deci-AI/super-gradients) (to be continued)<br>
42
43
</details>
43
44
@@ -46,13 +47,13 @@ All speed tests were performed on RTX 3090 with COCO Val set.The time calculated
46
47
47
48
| Models | BatchSize | Mode | Resolution | FPS |
48
49
|-|-|:-:|:-:|:-:|
49
-
| YOLOv5-s v7.0 | 1 | FP32 | 640x640 |468|
50
+
| YOLOv5-s v7.0 | 1 | FP32 | 640x640 |200|
50
51
| YOLOv5-s v7.0 | 32 | FP32 | 640x640 | - |
51
-
| YOLOv5-seg-s v7.0 | 1 | FP32 | 640x640 | - |
52
-
| YOLOv7 | 1 | FP32 | 640x640 | 154 |
52
+
| YOLOv5-seg-s v7.0 | 1 | FP32 | 640x640 | 155 |
53
+
| YOLOv6-s v3 | 1 | FP32 | 640x640 | 163 |
54
+
| YOLOv7 | 1 | FP32 | 640x640 | 107 |
53
55
| YOLOv8-s | 1 | FP32 | 640x640 | 171 |
54
-
| YOLOv8-s | 1 | FP32 | 640x640 | - |
55
-
| RT-DETR | 1 | FP32 | 640x640 | - |
56
+
| YOLOv8-seg-s | 1 | FP32 | 640x640 | 122 |
56
57
| RT-DETR | 1 | FP32 | 640x640 | - |
57
58
</div>
58
59
@@ -96,7 +97,7 @@ cd bin
96
97
```
97
98
98
99
> Notes:
99
-
> 1. The output of the model is required for post-processing is num_bboxes (imageHeight x image Width) x num_pred(num_cls + coordinates + confidence),while the output of YOLOv8 is num_pred * num_bboxes,which means the predicted values of the same box are not contiguous in memory.For convenience, the corresponding dimensions of the original pytorch output need to be transposed when exporting to ONNX model.
100
+
> 1. The output of the model is required for post-processing is num_bboxes (imageHeight x image Width) x num_pred(num_cls + coordinates + confidence),while the output of YOLOv8 is num_pred x num_bboxes,which means the predicted values of the same box are not contiguous in memory.For convenience, the corresponding dimensions of the original pytorch output need to be transposed when exporting to ONNX model.
0 commit comments