CoolFace
Modelpublic

mlx-community/YOLO26x-OptiQ-6bit

sourceHugging Faceagpl-3.0updated 5mo agoView on Hugging Face
3likes138downloads
Model Card

YOLO26x-OptiQ-6bit

Mixed-precision quantized YOLO26x for Apple Silicon via optiq

This is a mixed-precision quantized version of YOLO26x in MLX format, optimized with mlx-optiq for Apple Silicon inference via yolo-mlx.

Quantization Details

PropertyValue
Target BPW6.0
Achieved BPW6.00
Layers at 4-bit16
Layers at 8-bit174
Original size225.5 MB
Quantized size50.6 MB
Compression4.5x

Benchmark Results (COCO128)

ModelTotal DetectionsAvg/Image
optiq 6-bit7806.1
Original (FP32)7896.2

Detection delta: -9 (-1.1%) at 4.5x compression.

Usage

Requires mlx-optiq and yolo-mlx:

bash
pip install mlx-optiq yolo-mlx
python
from optiq.models.yolo import load_quantized_yolo

model = load_quantized_yolo("mlx-community/YOLO26x-OptiQ-6bit")
results = model.predict("image.jpg")

How optiq Works

optiq measures each conv layer's sensitivity via KL divergence on detection outputs, then assigns optimal per-layer bit-widths using greedy knapsack optimization. Sensitive layers (detection head, feature pyramid) get 8-bit precision while robust backbone layers get 4-bit.

Article

For more details on the methodology and results, see: Not All Layers Are Equal

Credits