mirror of
https://gitee.com/nanjing-yimao-information/ieemoo-ai-gift.git
synced 2025-08-18 21:30:25 +00:00
8 lines
212 B
Python
8 lines
212 B
Python
from ultralytics import YOLOv10
|
|
|
|
model = YOLOv10('yolov10n.yaml')
|
|
model.model.model[-1].export = True
|
|
model.model.model[-1].format = 'onnx'
|
|
del model.model.model[-1].cv2
|
|
del model.model.model[-1].cv3
|
|
model.fuse() |