Instructions to use TheCluster/YOLOv11-CoreML with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- ultralytics
How to use TheCluster/YOLOv11-CoreML with ultralytics:
from ultralytics import YOLOvv11 model = YOLOvv11.from_pretrained("TheCluster/YOLOv11-CoreML") source = 'http://images.cocodataset.org/val2017/000000039769.jpg' model.predict(source=source, save=True) - Notebooks
- Google Colab
- Kaggle
Export Format
#1
by ImVin - opened
Hello, I was wondering how you could export the original YOLOv11 PyTorch model to CoreML format. How do you do that? Can you share your export code?
I'm sorry for bothering you, but lately, I have fine-tuned the PyTorch model and export the PyTorch model to CoreML format using the documentation from Ultralytics, but the converted CoreML package cannot be integrated properly.
This is my way of export:
model.export(format="coreml", nms=True)