-
Notifications
You must be signed in to change notification settings - Fork 52
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support YOLOv5 #6
Comments
Convert pre-trained YOLOv5 pt to Core MLClone and install pre-requirements
git clone https://github.com/mshamash/yolov5
cd yolov5
git checkout fix/coreml_export_nms_layer
pip install -qr requirements.txt # install Export to Core ML modelpython export.py --weights yolov5n.pt --include coreml
python export.py --weights yolov5s.pt --include coreml
python export.py --weights yolov5m.pt --include coreml
python export.py --weights yolov5l.pt --include coreml
python export.py --weights yolov5x.pt --include coreml
python export.py --weights yolov5n6.pt --include coreml
python export.py --weights yolov5s6.pt --include coreml
python export.py --weights yolov5m6.pt --include coreml
python export.py --weights yolov5l6.pt --include coreml
python export.py --weights yolov5x6.pt --include coreml Check the model input/output with https://netron.app
Check the model with XcodeRelated Issue and PR |
Class names of YOLOv5's pre-trained with COCO dataset |
Closed
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
No description provided.
The text was updated successfully, but these errors were encountered: