add conversion to rockchip

This commit is contained in:
Alex Bezdieniezhnykh
2025-03-12 01:11:35 +02:00
parent edf685fabc
commit ee370fec05
2 changed files with 9 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
from ultralytics import YOLO
def export_rknn(model_path):
model = YOLO(model_path)
model.export(format="rknn", name="rk3588")
pass