c3b3bb6ded
Signed-off-by: Nickiel12 <35903114+Nickiel12@users.noreply.github.com>
6 lines
No EOL
144 B
Python
6 lines
No EOL
144 B
Python
from ultralytics import YOLO
|
|
|
|
model = YOLO("yolov8n.pt")
|
|
|
|
# model.export(format="onnx", simplify=True, int8=True)
|
|
model.export(format="engine") |