mirror of
https://github.com/azaion/ai-training.git
synced 2026-04-22 08:46:36 +00:00
7 lines
144 B
Python
7 lines
144 B
Python
from ultralytics import YOLO
|
|
|
|
|
|
def export_rknn(model_path):
|
|
model = YOLO(model_path)
|
|
model.export(format="rknn", name="rk3588")
|
|
pass |