6 lines
144 B
Python
6 lines
144 B
Python
|
from ultralytics import YOLO
|
||
|
|
||
|
model = YOLO("yolov8n.pt")
|
||
|
|
||
|
# model.export(format="onnx", simplify=True, int8=True)
|
||
|
model.export(format="engine")
|