Instructions to use SharpAI/yolo11s-coreml-fp16 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- ultralytics
How to use SharpAI/yolo11s-coreml-fp16 with ultralytics:
# Couldn't find a valid YOLO version tag. # Replace XX with the correct version. from ultralytics import YOLOvXX model = YOLOvXX.from_pretrained("SharpAI/yolo11s-coreml-fp16") source = 'http://images.cocodataset.org/val2017/000000039769.jpg' model.predict(source=source, save=True) - Notebooks
- Google Colab
- Kaggle
File size: 4,437 Bytes
aacbeaf | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 | {
"model_info": {
"accuracy_metrics": {
"mAP_50": 0.5049940561419454,
"mAP_50_95": 0.38160780749131645,
"precision": 0.4412721486826402,
"recall": 0.2044178149496428,
"f1_score": 0.2794030990489728,
"total_detections": 29443,
"total_ground_truth": 36781,
"class_metrics": {},
"inference_time_ms": 10.444444885128178,
"fps": 95.74467681129687,
"dataset_info": {
"name": "COCO Dataset - Real Object Detection",
"classes": 80,
"test_images": 5000,
"max_images": 5000,
"download_size_mb": 1580,
"estimated_time_minutes": 25,
"download_url": "mock://create_test_dataset",
"description": "Microsoft COCO dataset with 80 classes. Use quick_test variant for fast evaluation or full_evaluation for comprehensive testing.",
"variants": [
"quick_test",
"full_evaluation"
]
},
"evaluation_time": 1756503283.8856819
},
"benchmark_id": null,
"benchmark_status": "completed",
"compression_ratio": 0.9897618440599673,
"conversion_metadata": {
"apple_silicon": true,
"batch_size": 1,
"compute_unit_selection": "automatic_at_runtime",
"coremltools_version": "8.3.0",
"format": "mlpackage",
"input_shape": [
640,
640
],
"machine": "arm64",
"nms_enabled": true,
"optimization_level": "standard",
"output_signature": {
"inputs": [
{
"image_info": {
"color_space": "20",
"height": 640,
"width": 640
},
"name": "image",
"type": "imageType"
},
{
"name": "iouThreshold",
"type": "doubleType"
},
{
"name": "confidenceThreshold",
"type": "doubleType"
}
],
"model_author": "Ultralytics",
"model_description": "Ultralytics YOLO11s model trained on /usr/src/ultralytics/ultralytics/cfg/datasets/coco.yaml",
"model_version": "8.3.186",
"outputs": [
{
"array_info": {
"data_type": "65568",
"shape": []
},
"name": "confidence",
"type": "multiArrayType"
},
{
"array_info": {
"data_type": "65568",
"shape": []
},
"name": "coordinates",
"type": "multiArrayType"
}
]
},
"platform": "macOS-15.6.1-arm64-arm-64bit",
"precision": "fp16",
"processor": "arm",
"ultralytics_version": "unknown"
},
"conversion_time": 7.1553449630737305,
"converted_size_mb": 18.230433464050293,
"created_at": "2025-08-29T10:27:16.514666",
"evaluation_dataset": "coco",
"evaluation_id": "eval_yolo11s_coreml_fp16_auto_mlpackage_auto_fp16_20250829_102716_20250829_143324",
"evaluation_status": "completed",
"format": "mlpackage",
"hardware_target": "auto",
"has_benchmark": true,
"huggingface_last_sync": null,
"huggingface_repo_id": null,
"huggingface_repo_url": null,
"huggingface_status": null,
"huggingface_uploaded_at": null,
"id": "yolo11s_coreml_fp16_auto_mlpackage_auto_fp16_20250829_102716",
"name": "yolo11s_coreml_fp16_auto",
"optimization_level": "standard",
"original_size_mb": 18.419010162353516,
"output_path": "/Users/simba/.aegis-forge/models/converted/yolo11s_coreml_fp16_auto.coreml",
"performance_data": {
"fps": 95.74467681129687,
"inference_time_ms": 10.444444885128178,
"memory_mb": 0
},
"performance_summary": {
"fps": 95.74467681129687,
"inference_time_ms": 10.444444885128178,
"memory_mb": 0
},
"precision": "fp16",
"source_path": "/Users/simba/.aegis-forge/models/original/yolo11s.pt",
"file_path": "/Users/simba/.aegis-forge/models/converted/yolo11s_coreml_fp16_auto.coreml",
"original_model_source": "yolo11s_coreml_fp16_auto",
"conversion_timestamp": "2025-08-29T10:27:16.514666",
"source_model": "yolo11s_coreml_fp16_auto"
},
"performance_metrics": {
"fps": 95.74467681129687,
"inference_time_ms": 10.444444885128178,
"memory_mb": 0
},
"hardware_info": {},
"upload_date": "2025-09-26T12:17:32.998735",
"tool_version": "1.0.0"
} |