from ultralytics import YOLO # 모델 로드 model = YOLO('best.pt') # ONNX로 직접 내보내기 model.export(format='onnx', simplify=True, dynamic=True)