dots.tts, open-sourced by the Xiaohongshu dots team in collaboration with the X-LANCE lab at Shanghai Jiao Tong University, is a 2B-parameter, fully continuous, end-to-end autoregressive TTS foundation model. Unlike mainstream discrete token approaches, it directly models autoregressively in a continuous latent space and then reconstructs the waveform, with no reliance on discrete acoustic tokens throughout the pipeline.
Discrete representations map continuous speech to a finite vocabulary, creating an information bottleneck where different acoustic details may fall into the same index, losing information that is hard to recover. Reconstruction evaluations show that four discrete representations achieve PESQ-NB of 2.40-2.92 and SIM of 0.68-0.85, while three continuous representations achieve PESQ-NB of 3.99, 4.23, and 4.09, and SIM of 0.963, 0.950, and 0.969, with continuous representations clearly leading in fidelity.
The challenge of continuous autoregression lies in error accumulation: continuous latent variables lack quantization constraints, so a previous step's deviation enters the subsequent history, potentially causing howling, timbre drift, or text misalignment in long sentences. dots.tts mitigates this through AudioVAE semantic training and a causal Semantic Encoder, which shape a smooth, low-noise latent space and extract stable semantic history, reducing long-range error accumulation.