CoolFace
Modelpublic

mlx-community/Voxtral-4B-TTS-2603-mlx-bf16

sourceHugging Facecc-by-nc-4.0updated 6mo agoView on Hugging Face
1likes594downloads
Model Card

Voxtral-4B-TTS-2603 (MLX bf16)

MLX bf16 version of mistralai/Voxtral-4B-TTS-2603 — a 4B parameter multilingual text-to-speech model with 20 voice presets across 9 languages.

Size: ~8GB

Use with mlx-audio

bash
pip install -U mlx-audio
python
from mlx_audio.tts.utils import load

model = load("mlx-community/Voxtral-4B-TTS-2603-mlx-bf16")

for result in model.generate(
    text="Hello, this is a test of Voxtral text-to-speech!",
    voice="casual_male",
):
    # result.audio is an mx.array of 24kHz audio samples
    print(f"Generated {result.audio_duration} of audio")

Available Voices

English: casual_male, casual_female, cheerful_female, neutral_male, neutral_female

French: fr_male, fr_female | Spanish: es_male, es_female | German: de_male, de_female

Italian: it_male, it_female | Portuguese: pt_male, pt_female | Dutch: nl_male, nl_female

Arabic: ar_male | Hindi: hi_male, hi_female

Throughput (Apple Silicon)

VariantShort RTFLong RTFSize
4-bit0.97x0.74x~2.5GB
6-bit1.15x1.07x~3.5GB
bf166.50x6.32x~8GB

RTF = Real-Time Factor (lower is faster, <1.0 = faster than real-time).