Views
No views yet
onnxruntime, numpy, soundfile, tokenizers.| Model | Size | Description |
|---|---|---|
text_lm_kv.onnx | 374 MB | 4-layer Qwen2 text encoder with KV-cache |
tts_lm_kv.onnx | 572 MB | 20-layer Qwen2 TTS LM with KV-cache + EOS classifier |
diffusion_head.onnx | 81 MB | Latent denoiser (5-step DPM-Solver++) |
vocoder.onnx | 656 MB | Acoustic decoder (latents → 24kHz audio) |
acoustic_connector.onnx | 1.7 MB | Speech feedback projection |
.npz files) and the inference script.1pip install onnxruntime numpy soundfile tokenizers
2
3python vibevoice_full_onnx.py --text "Hello, this is a test." --speaker Carter1python vibevoice_full_onnx.py \
2 --text "Your text here" \
3 --speaker Carter \
4 --output output.wav \
5 --cfg_scale 1.5Text → [text_lm_kv] → hidden states
↓
[tts_lm_kv] ← [acoustic_connector] ← speech latent
↓
[diffusion_head] × 5 steps with CFG
↓
speech latent (64-dim)
↓
[vocoder] → audio (24kHz)microsoft/VibeVoice-Realtime-0.5B in FP16