📌Overview
Semantic + Acoustic dual tokens (speech-LLM / Vall-E style): quantization layers split information by role — semantic tokens carry content (phonemes/words; HuBERT content features or early codebooks, ~50 Hz, alignable with text), while acoustic tokens carry timbre, speaker identity, emotion and prosody from the higher RVQ levels (e.g. codebooks 5-8). Speech LLMs usually model “semantic first, acoustic second”: autoregressively predict semantic tokens, then non-autoregressively (or conditionally) predict acoustic tokens — balancing content correctness and audio quality.
💡Use Cases
audio tokenization (speech-LLM input), TTS conditioning and voice cloning, low-bitrate transmission; interviews drill the RVQ formula and the semantic/acoustic split.
⚡Key Problems Solved
a single VQ codebook has limited capacity — large quantization error, poor reconstruction; RVQ spreads the bitrate across
K cascaded codebooks, reaching ~1/100 bitrate (256 kbps → a few kbps) while keeping intelligibility and timbre, and naturally yields semantically/acoustically separated tokens for LLMs to consume hierarchically.