2024-09-08 14:08:46 +08:00

6 lines
268 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#更多功能参数介绍https://docs.ultralytics.com/modes/export/#key-features-of-export-mode
from ultralytics import YOLO
if __name__ == '__main__':
model = YOLO('best.pt') # load a custom trained model
# Export the model
model.export(format='onnx')