YOLOv8Detection / scripts /yolo_export.py
Jaime García Villena
move scripts and create README
82604cd
raw
history blame
178 Bytes
from ultralytics import YOLO
if __name__ == '__main__':
model = YOLO('yolov8n.pt')
model.export(format = 'saved_model', keras = True)
model.export(format = 'tflite')