Commit bdb530e 1 parent 1ae02f8 commit bdb530e Copy full SHA for bdb530e
File tree 4 files changed +55
-10
lines changed
4 files changed +55
-10
lines changed Original file line number Diff line number Diff line change @@ -134,12 +134,21 @@ You need to define the following config variables to enable object detection wit
134
134
format=onnx \
135
135
simplify=True
136
136
137
- # Export with FP16 precision (CUDA-compatible GPU is required)
137
+ # Export with FP16 precision using CUDA-compatible GPU
138
+ yolo export \
139
+ model=yolov8n.pt \
140
+ format=onnx \
141
+ simplify=True \
142
+ half=True \
143
+ device=0
144
+
145
+ # Export with FP16 precision using Apple Silicon GPU
138
146
yolo export \
139
147
model=yolov8n.pt \
140
148
format=onnx \
141
149
simplify=True \
142
- half=True
150
+ half=True \
151
+ device=mps
143
152
```
144
153
</details >
145
154
* ` yolov9 ` : [ YOLOv9] ( https://github.com/WongKinYiu/yolov9 ) model
@@ -199,12 +208,21 @@ You need to define the following config variables to enable object detection wit
199
208
format=onnx \
200
209
simplify=True
201
210
202
- # Export with FP16 precision (CUDA-compatible GPU is required)
211
+ # Export with FP16 precision using CUDA-compatible GPU
212
+ yolo export \
213
+ model=yolov11n.pt \
214
+ format=onnx \
215
+ simplify=True \
216
+ half=True \
217
+ device=0
218
+
219
+ # Export with FP16 precision using Apple Silicon GPU
203
220
yolo export \
204
221
model=yolov11n.pt \
205
222
format=onnx \
206
223
simplify=True \
207
- half=True
224
+ half=True \
225
+ device=mps
208
226
```
209
227
</details >
210
228
* ` yolo-nas ` : [ YOLO-NAS] ( https://github.com/Deci-AI/super-gradients ) model
Original file line number Diff line number Diff line change @@ -134,12 +134,21 @@ You need to define the following config variables to enable object detection wit
134
134
format=onnx \
135
135
simplify=True
136
136
137
- # Export with FP16 precision (CUDA-compatible GPU is required)
137
+ # Export with FP16 precision using CUDA-compatible GPU
138
+ yolo export \
139
+ model=yolov8n.pt \
140
+ format=onnx \
141
+ simplify=True \
142
+ half=True \
143
+ device=0
144
+
145
+ # Export with FP16 precision using Apple Silicon GPU
138
146
yolo export \
139
147
model=yolov8n.pt \
140
148
format=onnx \
141
149
simplify=True \
142
- half=True
150
+ half=True \
151
+ device=mps
143
152
```
144
153
</details >
145
154
* ` yolov9 ` : [ YOLOv9] ( https://github.com/WongKinYiu/yolov9 ) model
Original file line number Diff line number Diff line change @@ -134,12 +134,21 @@ You need to define the following config variables to enable object detection wit
134
134
format=onnx \
135
135
simplify=True
136
136
137
- # Export with FP16 precision (CUDA-compatible GPU is required)
137
+ # Export with FP16 precision using CUDA-compatible GPU
138
+ yolo export \
139
+ model=yolov8n.pt \
140
+ format=onnx \
141
+ simplify=True \
142
+ half=True \
143
+ device=0
144
+
145
+ # Export with FP16 precision using Apple Silicon GPU
138
146
yolo export \
139
147
model=yolov8n.pt \
140
148
format=onnx \
141
149
simplify=True \
142
- half=True
150
+ half=True \
151
+ device=mps
143
152
```
144
153
</details >
145
154
* ` yolov9 ` : [ YOLOv9] ( https://github.com/WongKinYiu/yolov9 ) model
Original file line number Diff line number Diff line change @@ -134,12 +134,21 @@ You need to define the following config variables to enable object detection wit
134
134
format=onnx \
135
135
simplify=True
136
136
137
- # Export with FP16 precision (CUDA-compatible GPU is required)
137
+ # Export with FP16 precision using CUDA-compatible GPU
138
+ yolo export \
139
+ model=yolov8n.pt \
140
+ format=onnx \
141
+ simplify=True \
142
+ half=True \
143
+ device=0
144
+
145
+ # Export with FP16 precision using Apple Silicon GPU
138
146
yolo export \
139
147
model=yolov8n.pt \
140
148
format=onnx \
141
149
simplify=True \
142
- half=True
150
+ half=True \
151
+ device=mps
143
152
```
144
153
</details >
145
154
* ` yolov9 ` : [ YOLOv9] ( https://github.com/WongKinYiu/yolov9 ) model
You can’t perform that action at this time.
0 commit comments