How to convert YOLO model to coreml model?

Here’s official documents.It convert YOLO model to coreml model which is available on the swift apps.

ultralytics

If your model are the one detects objects, append “nms=True” param to the export method. NMS stands for non-max suppression.

mdl = model.export(format="coreml", nms=True)

sample ios app


Comments

Leave a Reply

Your email address will not be published. Required fields are marked *