YOLOv8Detection / scripts /yolo_export.py
Jaime García Villena
Revert "Export with nms"
a9623eb
raw
history blame contribute delete
178 Bytes
from ultralytics import YOLO
if __name__ == '__main__':
model = YOLO('yolov8n.pt')
model.export(format = 'saved_model', keras = True)
model.export(format = 'tflite')