Is it possible to convert to mlmodel from .pt model?
Can you please point me to right direction on how to convert it? any script that can help me?
Using this repo you export to ONNX, from there you export to coreml.
The ONNX export is very simple. You set ONNX_export = True in models.py, then run detect.py with your desired export model/settings. You can also search the issues for various other methods.
Thanks
Most helpful comment
Using this repo you export to ONNX, from there you export to coreml.
The ONNX export is very simple. You set ONNX_export = True in models.py, then run detect.py with your desired export model/settings. You can also search the issues for various other methods.