Instructions to use webAI-Official/yolo26m-mlx with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- MLX
How to use webAI-Official/yolo26m-mlx with MLX:
# Download the model from the Hub pip install huggingface_hub[hf_xet] huggingface-cli download --local-dir yolo26m-mlx webAI-Official/yolo26m-mlx
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- LM Studio
Add model card
Browse files
README.md
ADDED
|
@@ -0,0 +1,105 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: agpl-3.0
|
| 3 |
+
library_name: mlx
|
| 4 |
+
tags:
|
| 5 |
+
- object-detection
|
| 6 |
+
- yolo
|
| 7 |
+
- yolo26
|
| 8 |
+
- mlx
|
| 9 |
+
- apple-silicon
|
| 10 |
+
- on-device
|
| 11 |
+
- edge
|
| 12 |
+
pipeline_tag: object-detection
|
| 13 |
+
datasets:
|
| 14 |
+
- coco
|
| 15 |
+
model-index:
|
| 16 |
+
- name: yolo26m-mlx
|
| 17 |
+
results:
|
| 18 |
+
- task:
|
| 19 |
+
type: object-detection
|
| 20 |
+
name: Object Detection
|
| 21 |
+
dataset:
|
| 22 |
+
name: COCO val2017
|
| 23 |
+
type: coco
|
| 24 |
+
metrics:
|
| 25 |
+
- type: mAP
|
| 26 |
+
value: 0.523
|
| 27 |
+
name: mAP@0.5:0.95
|
| 28 |
+
---
|
| 29 |
+
|
| 30 |
+
# YOLO26m (MLX)
|
| 31 |
+
|
| 32 |
+
Pure-MLX weights for **YOLO26m**, ready to run on Apple Silicon with
|
| 33 |
+
[`yolo-mlx`](https://github.com/thewebAI/yolo-mlx). No PyTorch at runtime,
|
| 34 |
+
no cloud calls, no waiting on someone else's API — everything stays on your Mac.
|
| 35 |
+
|
| 36 |
+
This is a mid-size variant in the YOLO26 MLX family: higher accuracy than n/s while still fast enough for many real-time use cases.
|
| 37 |
+
|
| 38 |
+
## Quickstart
|
| 39 |
+
|
| 40 |
+
```bash
|
| 41 |
+
pip install yolo-mlx huggingface_hub
|
| 42 |
+
```
|
| 43 |
+
|
| 44 |
+
```python
|
| 45 |
+
from huggingface_hub import hf_hub_download
|
| 46 |
+
from yolo26mlx import YOLO
|
| 47 |
+
|
| 48 |
+
weights = hf_hub_download("webAI-Official/yolo26m-mlx", "yolo26m.npz")
|
| 49 |
+
model = YOLO(weights)
|
| 50 |
+
|
| 51 |
+
results = model.predict("https://ultralytics.com/images/bus.jpg", conf=0.25)
|
| 52 |
+
results[0].save()
|
| 53 |
+
```
|
| 54 |
+
|
| 55 |
+
## Specs
|
| 56 |
+
|
| 57 |
+
| Variant | mAP@0.5:0.95 | FPS (M4 Pro) | Best for |
|
| 58 |
+
|---------|--------------|--------------|------------------------------|
|
| 59 |
+
| yolo26m | 52.3% | 55 | Higher accuracy, still fast |
|
| 60 |
+
|
| 61 |
+
Other variants in this family:
|
| 62 |
+
[`yolo26n-mlx`](https://huggingface.co/webAI-Official/yolo26n-mlx) ·
|
| 63 |
+
[`yolo26s-mlx`](https://huggingface.co/webAI-Official/yolo26s-mlx) ·
|
| 64 |
+
[`yolo26l-mlx`](https://huggingface.co/webAI-Official/yolo26l-mlx) ·
|
| 65 |
+
[`yolo26x-mlx`](https://huggingface.co/webAI-Official/yolo26x-mlx)
|
| 66 |
+
|
| 67 |
+
## Requirements
|
| 68 |
+
|
| 69 |
+
- Apple Silicon Mac (M1, M2, M3, or M4)
|
| 70 |
+
- macOS 14.0+
|
| 71 |
+
- Python 3.10+
|
| 72 |
+
|
| 73 |
+
Intel Macs are not supported — the whole point of MLX is Apple Silicon native acceleration.
|
| 74 |
+
|
| 75 |
+
## What's in this repo
|
| 76 |
+
|
| 77 |
+
| File | Description |
|
| 78 |
+
|---------------|-----------------------------------------------------|
|
| 79 |
+
| `yolo26m.npz` | MLX-format weights, converted from the YOLO26m `.pt` checkpoint and verified shape-by-shape against the source. |
|
| 80 |
+
| `README.md` | This card. |
|
| 81 |
+
|
| 82 |
+
## Training data
|
| 83 |
+
|
| 84 |
+
Pretrained on [COCO](https://cocodataset.org/) (80 classes). For domain-specific
|
| 85 |
+
use cases, fine-tune on your own data — see the
|
| 86 |
+
[training guide](https://github.com/thewebAI/yolo-mlx/blob/main/GUIDE_TRAINING_BENCHMARK.md)
|
| 87 |
+
in the upstream repo.
|
| 88 |
+
|
| 89 |
+
## License
|
| 90 |
+
|
| 91 |
+
AGPL-3.0, inherited from upstream
|
| 92 |
+
[`thewebAI/yolo-mlx`](https://github.com/thewebAI/yolo-mlx).
|
| 93 |
+
Free to use, fork, modify, and ship for personal projects, research, and
|
| 94 |
+
prototypes. If you deploy this as a hosted service for real users, AGPL
|
| 95 |
+
requires you to publish your source under the same license.
|
| 96 |
+
|
| 97 |
+
## About webAI
|
| 98 |
+
|
| 99 |
+
[webAI](https://www.webai.com/) builds the sovereign AI platform — AI that runs
|
| 100 |
+
on your infrastructure, stays under your control, and compounds with your
|
| 101 |
+
knowledge. Every release here reflects a simple belief: **open models, owned
|
| 102 |
+
locally, coordinated intelligently, compound into something no centralized
|
| 103 |
+
system can match.**
|
| 104 |
+
|
| 105 |
+
🌐 [webai.com](https://www.webai.com/) · 💬 [community.webai.com](https://community.webai.com)
|