CoolFace
Modelpublic

Emerald7664/OmniVoice-GGUF

sourceHugging Faceapache-2.0updated 28d agoView on Hugging Face
0likes219downloads
Model Card

OmniVoice GGUF

GGUF weights for omnivoice.cpp, a C++17/GGML port of OmniVoice (k2-fsa/OmniVoice). Multilingual zero shot TTS, 646 languages, 24 kHz mono. Runs on CPU, CUDA, ROCm, Metal, Vulkan.

Files

Two GGUFs load together :

omnivoice-base-{variant}.gguf Qwen3 0.6B backbone, text -> tokens omnivoice-tokenizer-{variant}.gguf HuBERT + DAC + RVQ, tokens <-> 24 kHz audio

variantbasetokenizeruse case
F322.46 GB734 MBreference, debug, conversion
BF161.23 GB373 MBsource faithful, max precision
Q8_0656 MB289 MBrecommended default
Q4KM407 MB252 MBlowest VRAM

Quick start

git clone --recurse-submodules https://github.com/ServeurpersoCom/omnivoice.cpp.git
cd omnivoice.cpp && ./buildcuda.sh

mkdir -p models
huggingface-cli download Serveurperso/OmniVoice-GGUF \
    omnivoice-base-Q8_0.gguf omnivoice-tokenizer-Q8_0.gguf \
    --local-dir models

cd examples
./tts.sh        # voice design   -> tts.wav
./clone.sh      # voice cloning  -> clone.wav

Backends

Set GGML_BACKEND to force a device, otherwise the runtime picks the best one available.

valuetarget
CUDA0NVIDIA GPU, fastest path on Ada / Blackwell
Vulkan0Cross vendor GPU (AMD / Intel / NVIDIA)
MetalApple Silicon GPU
CPUCPU fallback, x86 variant auto selected

Quantization policy

Tokenizer GGUFs are not uniform quants. Three categories get a dedicated treatment :

tensordtype across all variants
RVQ codebooks, fc, fc2, projectin / projectoutF32
Snake activation alphaF32
Conv kernels with non alignable rows (K=7,3,1)F16 (in Q* variants)

Same fallback as llama.cpp tensor_type_fallback : F16 has no block size and matches the runtime target dtype on every backend. The base LM (Qwen3 0.6B, hidden = 1024) has all dimensions divisible by 256 so the fallback never triggers, the LM follows standard llama.cpp K-quant across variants.

License

Upstream model : OmniVoice by Xiaomi / k2-fsa, Apache 2.0 Audio codec : Higgs Audio v2 (bosonai/higgs-audio-v2-tokenizer), Apache 2.0 GGUF tooling : omnivoice.cpp, MIT