Vincent Hanewinkel d0ec161fe4 add tflite export
2025-06-12 14:51:14 +02:00

10 lines
187 B
Python

from ultralytics import YOLO
import os
dir = os.path.dirname(os.path.realpath(__file__))
model = YOLO(dir + "/best.pt")
# Exportiere es ins TFLite-Format
model.export(format="tflite")