Views
No views yet
| File | Quant | Size | Notes |
|---|---|---|---|
vibevoice-1.5b-tts-f16.gguf | F16 | 5.1 GB | Full precision |
vibevoice-1.5b-tts-q8_0.gguf | Q8_0 | 3.1 GB | Near-lossless |
vibevoice-1.5b-tts-q4_k.gguf | Q4_K | 1.9 GB | Smallest, perfect ASR round-trip |
The Q8_0/Q4_K files keep the diffusion prediction head, connectors and EOS classifier at full precision (only the LM backbone is quantized). The head runs under classifier-free guidance, so quantizing it could push the first frames onto a wrong trajectory that decodes as a brief non-speech "music"/hum onset before the voice; keeping it full-precision avoids that at a small size cost.
1# Voice cloning TTS
2VIBEVOICE_VOICE_AUDIO=reference_voice.wav \
3crispasr --tts "Hello, how are you today?" \
4 -m vibevoice-1.5b-tts-q4_k.gguf \
5 --tts-output output.wav<|vision_pad|> (speech_diffusion) tokens that trigger diffusion sampling,
with <|vision_start|> / <|vision_end|> as control tokens.| Input | Parakeet ASR |
|---|---|
| "Hello, how are you today?" | "Hello, how are you today?" |
| Feature | Realtime-0.5B | 1.5B Base |
|---|---|---|
| Architecture | 4L base + 20L TTS LM | Single 28L LM |
| Voice input | Pre-computed .pt prompts | Audio WAV files |
| Voice cloning | No (fixed presets) | Yes (from reference audio) |
| Multi-speaker | No | Yes (up to 4 speakers) |
| Streaming | Yes | No |
microsoft.mit. This repository redistributes under the same terms; it grants no rights the upstream licence does not.