Views
No views yet
yolo-mlx. No PyTorch at runtime,
no cloud calls, no waiting on someone else's API — everything stays on your Mac.pip install yolo-mlx huggingface_hub1from huggingface_hub import hf_hub_download
2from yolo26mlx import YOLO
3
4weights = hf_hub_download("webAI-Official/yolo26s-mlx", "yolo26s.npz")
5model = YOLO(weights)
6
7results = model.predict("https://ultralytics.com/images/bus.jpg", conf=0.25)
8results[0].save()| Variant | mAP@0.5:0.95 | FPS (M4 Pro) | Best for |
|---|---|---|---|
| yolo26s | 47.6% | 105 | Balanced default |
| File | Description |
|---|---|
yolo26s.npz | MLX-format weights, converted from the YOLO26s .pt checkpoint and verified shape-by-shape against the source. |
README.md | This card. |
thewebAI/yolo-mlx.
Free to use, fork, modify, and ship for personal projects, research, and
prototypes. If you deploy this as a hosted service for real users, AGPL
requires you to publish your source under the same license.