Views
No views yet
mlx-community/Voxtral-Mini-4B-Realtime-2602-4bit checkpoint, this one keeps the faster mlx-audio runtime layout: quantized tok_embeddings, plus bfloat16 non-quantized weights and quantization scales.mlx-audio streaming benchmarks on a few real audio samples, it ran about 3x faster overall than the older mlx-community variant, with similar transcription output.| Chip | Recommended | Why |
|---|---|---|
| M3 / M4+ | This repo (-4bit, bf16) | bf16 has a native ALU on M3/M4; same speed as fp16 with a wider exponent range (safer numerics). |
| M1 / M2 | iris-sfg/Voxtral-Mini-4B-Realtime-2602-4bit-fp16 | Metal on M1/M2 has no native bf16 ALU; bf16 ops fall back to a slower path. The fp16 variant stays on the fast GPU path. |
mistralai/Voxtral-Mini-4B-Realtime-26021python -m mlx_audio.convert \
2 --hf-path mistralai/Voxtral-Mini-4B-Realtime-2602 \
3 --mlx-path /path/to/Voxtral-Mini-4B-Realtime-2602-4bit \
4 --quantize \
5 --q-group-size 64 \
6 --q-bits 4 \
7 --model-domain stt464affinemodel.safetensorsmodel.safetensors.index.jsonconfig.jsongeneration_config.jsonparams.jsonprocessor_config.jsontekken.jsonpip install "mlx-audio[stt]"1from mlx_audio.stt.utils import load_model
2
3model = load_model("path-or-hf-repo")
4result = model.generate("audio.wav")
5print(result.text)