Views
No views yet
ibm-granite/granite-speech-4.1-2b
for Apple Silicon. This is the autoregressive Granite Speech model, not the NAR
variant.| Component | Precision |
|---|---|
| 16-layer Conformer speech encoder | BF16 |
| 2-layer Q-Former speech projector | BF16 |
| Eligible internal language-model linear layers | MLX affine 8-bit, group size 64 |
| Token embedding and language-model output head | BF16 |
| Norms, biases, and unsupported tensors | BF16 |
de575db64086f84fdc79da4932d1076e965bc546model.safetensors: approximately 3.14 GB1pip install -U mlx-audio
2
3python -m mlx_audio.stt.generate \
4 --model /path/to/granite-speech-4.1-2b-mlx-8bit \
5 --audio audio.wav \
6 --output-path transcript \
7 --format txt \
8 --prompt "transcribe the speech with proper punctuation and capitalization."mlx-audio and run with greedy decoding
on IBM's bundled multilingual_sample.wav. Its English and French transcript,
including punctuation, capitalization, accents, and hyphenation, exactly matched
the BF16 reference. This is a smoke test, not a complete WER benchmark.