Views
No views yet
ibm-granite/granite-speech-4.1-2b-nar for Apple Silicon. Runs via mlx-audio.[audio | hypothesis_tokens] and emits edited logits in a single forward pass — no autoregression, no KV cache.1from pathlib import Path
2from mlx_audio.stt.utils import load_model
3
4model = load_model(Path("mlx-community/granite-speech-4.1-2b-nar-mlx"))
5out = model.generate("audio.wav")
6print(out.text)