This repository contains the official GGUF quantized model package for
VieNeu-TTS v3 Turbo (48 kHz), fully integrated and supported natively in
audio.cpp (merged in PR #80).
It packs both the compressed Qwen3 talker backbone and the speech tokenizer/decoder weights into a single optimized 163 MB file, enabling instant load times and ultra-fast, torch-free C++ generation on CPU.
The following benchmark compares native Python backends (PyTorch CPU, ONNX CPU int8, and ONNX CPU fp32) against the compiled C++ CPU backend (using 4 threads, generating ~3.5 seconds of high-fidelity 48 kHz audio):
1# Clone the upstream repository
2git clone https://github.com/0xShug0/audio.cpp.git
3cd audio.cpp
4
5# Build the executable
6chmod +x scripts/build_linux.sh
7./scripts/build_linux.sh --backend cpu --target audiocpp_cli
1mkdir -p models/VieNeu-TTS-v3-Turbo
2cd models/VieNeu-TTS-v3-Turbo
3
4wget https://huggingface.co/phuocnguyen90/VieNeu-TTS-v3-Turbo-GGUF/resolve/main/model.gguf
5wget https://huggingface.co/phuocnguyen90/VieNeu-TTS-v3-Turbo-GGUF/resolve/main/config.json
6wget https://huggingface.co/phuocnguyen90/VieNeu-TTS-v3-Turbo-GGUF/resolve/main/tokenizer.json
7wget https://huggingface.co/phuocnguyen90/VieNeu-TTS-v3-Turbo-GGUF/resolve/main/tokenizer_config.json
8wget https://huggingface.co/phuocnguyen90/VieNeu-TTS-v3-Turbo-GGUF/resolve/main/special_tokens_map.json
9mkdir -p speech_tokenizer
10wget -O speech_tokenizer/config.json https://huggingface.co/phuocnguyen90/VieNeu-TTS-v3-Turbo-GGUF/resolve/main/speech_tokenizer/config.json