Paper deep dive
CTC-TTS: LLM-based dual-streaming text-to-speech with CTC alignment
Hanwen Liu, Saierdaer Yusuyin, Hao Huang, Zhijian Ou
Intelligence
Status: succeeded | Model: Gemma-4-26B-A4B | Prompt: intel-v1 | Confidence: 90%
Last extracted: 7/20/2026, 3:59:25 PM
Summary
The paper introduces CTC-TTS, a dual-streaming text-to-speech system that replaces traditional GMM-HMM forced alignment (like MFA) with a lightweight CTC-based aligner. It proposes a bi-word interleaving strategy to balance synthesis quality and latency, featuring two variants: CTC-TTS-L (length-wise concatenation for higher quality) and CTC-TTS-F (feature stacking for lower latency). Experiments demonstrate that CTC-TTS outperforms fixed-ratio interleaving and MFA-based baselines in streaming synthesis and zero-shot tasks.
Entities (15)
Relation Signals (14)
CTC-TTS-F â isvariantof â CTC-TTS
confidence 95% · Two variants are designed: CTC-TTS-L ... and CTC-TTS-F
CTC-TTS-L â isvariantof â CTC-TTS
confidence 95% · Two variants are designed: CTC-TTS-L ... and CTC-TTS-F
CTC-TTS â targets â Dual-streaming TTS
confidence 95% · LLM-based dual-streaming text-to-speech with CTC alignment
CTC-TTS â uses â Bi-word interleaving
confidence 95% · introduces a bi-word based interleaving strategy
CTC-TTS â uses â CTC alignment
confidence 95% · CTC-TTS, which replaces MFA with a CTC based aligner
CTC-TTS-L â optimizesfor â Quality
confidence 90% · CTC-TTS-L ... for higher quality
CTC-TTS-F â optimizesfor â Latency
confidence 90% · CTC-TTS-F ... for lower latency
CTC-TTS â outperforms â LLMVox
confidence 90% · Compared to LLMVox, CTC-TTS-F achieves lower WER and CER
CTC-TTS â outperforms â MFA-based baselines
confidence 90% · CTC-TTS outperforms fixed-ratio interleaving and MFA-based baselines
Cypher Suggestions (0)
No Cypher suggestions yet.
Abstract
Abstract:Large-language-model (LLM)-based text-to-speech (TTS) systems can generate natural speech, but most are not designed for low-latency dual-streaming synthesis. High-quality dual-streaming TTS depends on accurate text--speech alignment and well-designed training sequences that balance synthesis quality and latency. Prior work often relies on GMM-HMM based forced-alignment toolkits (e.g., MFA), which are pipeline-heavy and less flexible than neural aligners; fixed-ratio interleaving of text and speech tokens struggles to capture text--speech alignment regularities. We propose CTC-TTS, which replaces MFA with a CTC based aligner and introduces a bi-word based interleaving strategy. Two variants are designed: CTC-TTS-L (token concatenation along the sequence length) for higher quality and CTC-TTS-F (embedding stacking along the feature dimension) for lower latency. Experiments show that CTC-TTS outperforms fixed-ratio interleaving and MFA-based baselines on streaming synthesis and zero-shot tasks. Speech samples are available at this https URL.
Tags
Links
- Source: https://arxiv.org/abs/2602.19574v1
- Canonical: https://arxiv.org/abs/2602.19574v1
Trouble viewing inline? Open PDF directly â
Full Text
28,949 characters extracted from source content.
Expand or collapse full text
CTC-TTS: LLM-based dual-streaming text-to-speech with CTC alignment Hanwen Liu ID 1 , Saierdaer Yusuyin ID 1 , Hao Huang ID 1 , Zhijian Ou ID 2,â 1 School of Computer Science and Technology, Xinjiang University, China 2 Speech Processing and Machine Intelligence (SPMI) Lab, Tsinghua University, China huanghao@xju.edu.cn, ozj@tsinghua.edu.cn Abstract Large-language-model (LLM)-based text-to-speech (TTS) sys- tems can generate natural speech, but most are not designed for low-latency dual-streaming synthesis. High-quality dual- streaming TTS depends on accurate textâspeech alignment and well-designed training sequences that balance synthesis qual- ity and latency. Prior work often relies on GMM-HMM based forced-alignment toolkits (e.g., MFA), which are pipeline- heavy and less flexible than neural aligners; fixed-ratio inter- leaving of text and speech tokens struggles to capture textâ speech alignment regularities. We propose CTC-TTS, which replaces MFA with a CTC based aligner and introduces a bi- word based interleaving strategy. Two variants are designed: CTC-TTS-L (token concatenation along the sequence length) for higher quality and CTC-TTS-F (embedding stacking along the feature dimension) for lower latency. Experiments show that CTC-TTS outperforms fixed-ratio interleaving and MFA-based baselines on streaming synthesis and zero-shot tasks. Speech samples are available at https://ctctts.github.io/. Index Terms: dual-streaming TTS, CTC alignment 1. Introduction In recent years, large language model (LLM)-based methods [1, 2, 3, 4] that treat text-to-speech (TTS) as a language modeling task have gained widespread attention. These methods typically convert continuous speech signals into discrete token sequences with a neural audio codec (NAC) [5, 6, 7], predict the sequence using an LLM, and finally reconstruct the speech waveform via the NAC decoder. However, most LLM-based TTS systems are not designed for low-latency dual-streaming synthesis [1, 2, 3]. High-quality dual-streaming TTS requires accurate textâspeech alignment and well-designed training sequences that balance synthesis quality and latency. Prior work often relies on GMM-HMM based forced-alignment toolkits (e.g., Montreal Forced Aligner, MFA) [8], which are pipeline-heavy and less flexible than neu- ral aligners. Meanwhile, fixed-ratio interleaving of text and speech tokens struggles to capture alignment regularities be- tween text and speech, making it more difficult for the model to learn reliable temporal dependencies. Alignment-aware in- terleaving can alleviate this issue but still typically depends on MFA; existing methods adopt different alignment units (e.g., words, BPEs, or phonemes) and diverse sequence organiza- tions, as reviewed in Section 2. To address these limitations, we propose CTC-TTS, a Connectionist Temporal Classification (CTC)-based [9] dual- streaming TTS method that improves both alignment and se- quence organization. CTC alignment introduces a blank symbol ** indicates the corresponding author. 0 This paper has been submitted to INTERSPEECH 2026. and yields a robust structural correspondence without requir- ing frame-accurate phoneme boundaries. This level of align- ment is sufficient for an autoregressive model to learn to map local phoneme groups to speech tokens, reducing learning com- plexity compared with fixed-ratio interleaving and avoiding the heavy pipeline of MFA. Based on word-level phonemeâspeech alignment, we construct bi-word blocks: phonemes of the cur- rent word plus the separator and phonemes of the next word, followed by the speech tokens aligned to the current word. To balance synthesis quality and latency, we design two variants based on different interleaving implementations of phonemes and speech tokens for bi-words. CTC-TTS-L con- catenates text and speech tokens along the sequence length di- mension to enhance generation quality. CTC-TTS-F stacks text and speech embeddings along the feature dimension, enabling synthesis to start from the first phoneme and thus reducing first- packet latency. Experiments show that CTC-TTS outperforms strong baselines on streaming synthesis and zero-shot tasks. Our main contributions are: (1) a lightweight CTC-based phoneme-speech alignment procedure for LLM-based TTS; (2) a bi-word interleaving strategy with compact look-ahead; (3) two variants (CTC-TTS-L/F) that realize different quality- latency trade-offs and improve streaming and zero-shot results. 2. Related Work Early LLM-based TTS methods concatenate full speech tokens after the complete text input, leading to large first-packet la- tency (FPL) [1, 3]. Dual-streaming methods therefore construct interleaved textâspeech sequences so that an autoregressive de- coder can generate speech tokens while text tokens arrives. Non-aligned interleaving. IST-LM [10], CosyVoice2 [4], and StreamMel [11] use fixed-ratio interleaving of text and speech. LLMVox [12] stacks phoneme and speech embeddings in the feature dimension to reduce FPL. Aligned interleaving. SpeakStream [13] uses word-level forced alignment to pair chunked speech with a window of text words. SyncSpeech [14] applies MFA for speechâBPE (Byte Pair Encoding) [15] alignment and generates speech tokens per BPE token. ELLA-V [16] employs MFA for phonemeâ speech alignment and aligned interleaving, outperforming the non-aligned VALL-E [1]. Interleaving design. Interleaving schemes reflect quality- latency trade-offs in streaming speech synthesis, by using dif- ferent amounts of look-ahead. SpeakStream trades latency for quality via the text-window size and speech hop. SyncSpeech introduces duration modeling, increasing model complexity. ELLA-V adopts global advance (prepending all phonemes for global context) and local advance (shifting phonemes forward for local context). In this paper, we adopt a bi-word interleav- ing unit to balance synthesis quality and latency. arXiv:2602.19574v1 [eess.AS] 23 Feb 2026 3. CTC-TTS 3.1. Speechâphoneme alignment Given input speech features, a CTC-based automatic speech recognition (ASR) model outputs a posterior distribution over text labels 1 at each frame. From this distribution, we obtain the maximum-probability alignment pathÏ â via the Viterbi algo- rithm [9]: Ï â = argmax Ï T Y t=1 P(Ï t | x t )(1) where x t denotes the acoustic feature at frame t,Ï = (Ï 1 ,...,Ï T ) is a frame-level alignment path over an extended alphabet (phonemes plus the blank symbol), and P(Ï t | x t ) is the posterior probability at frame t computed from the logits produced by the neural-network based acoustic model. In CTC, multiple consecutive frames may share the same label and blank labels may appear between phoneme labels; the standard col- lapse operation (merge repeats and remove blanks) maps a path to the corresponding phoneme sequence [9]. In the pathÏ â , phoneme labels usually lag their actual speech onset, and blank labels may correspond to silence or ad- jacent phoneme regions [17]. We therefore assign each blank label to its first subsequent phoneme. IfÏ â ends with blank labels, these trailing blanks are assigned to the final phoneme label, yielding the refined path Ë Ï. In our experiments, the CTC model converts speech into acoustic features at 25 frames per second, while the NAC converts speech into a discrete token sequence s at 75 frames per second, the length ratio between Ë Ï and s = (s 1 ,...,s 3T ) is 1:3. We thus map each phoneme label in Ë Ï to three corresponding speech tokens in s, such that the i-th phoneme Ë Ï i is aligned to the discrete speech tokens [s 3iâ2 ,s 3iâ1 ,s 3i ]. Unlike GMM-HMM forced alignment, the CTC alignment used here is not intended to provide frame-accurate phoneme boundaries. Instead, it provides a stable structural alignment that is sufficient for constructing word-level phonemeâspeech blocks and for learning the mapping from local phoneme groups to speech tokens. 3.2. Interleaving schemes After aligning phonemes and speech, we derive the speech se- quence corresponding to the phonemes of each word. Since a wordâs pronunciation depends on its context, we construct the sequence illustrated in Figure 1(a): after the phonemes of the current word, we append the word separator between the current and next word (space, comma, period, question mark and exclamation mark), together with the phonemes of the next word, followed by the speech tokens corresponding to the cur- rent word, and end with a block terminatorâšeobâ©. For the k-th word, we refer to this as a (bi-word) phonemeâspeech block b k . For the last word, which has no subsequent word, we insert an âšeosâ© as a placeholder for the future word. Concatenating all phonemeâspeech blocks yields the complete training sequence for an utterance: Y = b 1 â b 2 â · . The model trained on such textâspeech sequences constructed by length-wise con- catenation is denoted as CTC-TTS-L (Figure 1a). CTC-TTS-L only starts generating speech tokens after re- ceiving phonemes for the first two words, which increases first- packet latency. To mitigate this issue, we follow LLMVox [12] 1 In this work, we use phonemes as text labels; exploring graphemes or subwords as alignment units is left for future work. ppsep ... ...... eobpp ... token embedding s s ... ... ... ... ... ... word separator speech s sep <eob> zero tensor 0 eob <pad> pad phoneme p Interleaving Schemes phonemes of current word phonemes of next word speech of current word (a) Splicing in length (b) Feature stacking 0 p s sep s p s p s pad s pad 0 eob Figure 1: One bi-word block in the two textâspeech interleaving schemes: (a) CTC-TTS-L and (b) CTC-TTS-F. and instead stack phoneme and speech embeddings along the feature dimension (Figure 1b). For each block, we appendâšpadâ© tokens to the phoneme sequence so that its length matches the speech-token sequence length, then stack them along the fea- ture dimension. For initialization, the first phoneme of the ini- tial block and theâšeobâ© token are both stacked with an all-zero tensor. During inference, the model can generate speech to- kens immediately after reading the first phoneme (stacked with zeros), which reduces first-packet latency. The model trained with feature-level stacking is denoted as CTC-TTS-F. 3.3. Model architecture Figure 2 illustrates the CTC-TTS framework (shown for CTC- TTS-L); CTC-TTS-F is analogous and omitted for brevity. Since this paper adopts a single-codebook NAC, only one au- toregressive Transformer is used to predict speech tokens and the âšeobâ© symbol. Let the training sequence be rewritten as Y = y 1 ,· ,y |Y| , where |Y| denotes the sequence length. The training objective is to minimize the cross-entropy loss over speech tokens andâšeobâ©: L =â X t=1,· ,|Y|; t/âT logP(y t |y <t ;Ξ)(2) where T denotes the positions of text tokens (phonemes and âšeosâ©) in the interleaved sequence, and Ξ denotes the model pa- rameters. For CTC-TTS-L, the model starts generating speech tokens after reading the phonemes of the current word and the next word. It keeps generating until emittingâšeobâ©, which indicates the end of the current wordâs speech block. Inference terminates afterâšeobâ© is emitted for the last word. For CTC-TTS-F, inference begins by receiving the first phoneme. Its embedding is stacked with an all-zero tensor along the feature dimension and fed into the model to generate one speech token. After each generated speech token, its embedding is stacked with the next phoneme embedding (orâšpadâ© after the phonemes for two words are exhausted) and appended to the se- quence. Whenâšeobâ© is emitted, the current wordâs speech block ends; we then stackâšeobâ© with zeros to generate the next speech token, and stack that token with the next wordâs first phoneme to start the subsequent block. Inference terminates whenâšeobâ© is emitted for the last word. Following LLMVox, we decode speech tokens to audio in chunks. For zero-shot dual-streaming synthesis, the process is similar but conditioned on pre-aligned speech and text prompts (prompt tokens in Figure 2), which are typically reusable. Decoder-only Transformer ï„ Phonemes G2Pâ NAC Encoderâ Prompt Text p s Phoneme Tokens of One Word Speech Token s s s s NAC Decoderâ â Frozen Parameters ï„ Train Parameters s CTC Modelâ Alignment-and-Interleaving s s p ...... ...... p eob eob eob <eob> Token p eobs ssep ... p ... sep sep sepppp sep Word Separator CTC-TTS Prompt Tokens Target TokensTarget Tokens Chunk-aware Streaming Output Personalized Speech Prompt Speech Prompt Speech Logits Speech Tokens Figure 2: Overview of CTC-TTS-L. Components include: (1) a G2P model that converts text to phonemes; (2) a CTC-based ASR model for speechâphoneme alignment; (3) a decoder-only LM that models interleaved text and speech tokens; (4) a neural audio codec; and (5) an alignment-and-interleaving module implementing Sections 3.1â3.2. CTC-TTS-F shares the same components but uses feature- level stacking (Fig. 1b) and is omitted for brevity. No prompts are required in single-speaker settings. 4. Experimental setup 4.1. Pre-trained models and dataset selection We use a LibriSpeech-trained monolingual Whistle [18, 19] as the CTC model (115M parameters), which is a Conformer- based [20] ASR model with weak phonetic supervision. Phonetisaurus [21], a WFST-based [22] G2P toolkit, converts English text to IPA phonemes. WavTokenizer [5], a single- codebook NAC, enables a single autoregressive model to pre- dict all speech tokens. To obtain the speechâphoneme align- ment, we use the forced align function in Torchaudio, which takes CTC posteriors as input and implements Eq. (1) via the Viterbi algorithm. Single-speaker streaming experiments.We evaluate dual-streaming generation with the two CTC-TTS variants against LLMVox [12]. Following LLMVox, we use the Voice- Assistant400K [23] single-speaker dataset (1750 h training, 50 h validation, 5 h test) after filtering untranscribable utterances via Phonetisaurus. We reproduce LLMVox on this dataset for com- parison and adopt the same chunk-aware streaming speech out- put paradigm as LLMVox. Multi-speaker zero-shot experiments. We compare our alignment and interleaving schemes with baselines on two tasks (continuation and cross-speaker). Different model are trained on the 960-hour LibriSpeech dataset. For evaluation, the con- tinuation task uses 4â10 s utterances from test-clean, while the cross-speaker task uses Seed-TTS [2] test-en. We repro- duce ELLA-Vâs local-advance setting with the same backbone, NAC, and data splits for fair comparison. 4.2. Training configuration We use 12 Transformer decoder layers with 16 attention heads, 1024 embedding dimension, 4096 feed-forward dimension, and 0.3 dropout. For CTC-TTS-F, text and speech embedding di- mensions are 256 and 768. For single-speaker experiments, the parameters are adjusted to 4 decoder layers, 12 attention heads, 768 embedding dimension, 3072 feed-forward dimen- sion, 0 dropout, 256 text embedding dimension, and 512 speech Table 1: Comparison between CTC-TTS and LLMVox. LLMVox interleaves text and speech at a fixed ratio and stacks embed- dings in the feature dimension. CTC-TTS-F stacks embeddings in the feature dimension, while CTC-TTS-L concatenates tokens along the length dimension. #Params refers to model parame- ters, and NA indicates not applied. Method#Params WER%â CER%â FPL-Aâ UTMOSâ Ground TruthNANANANA4.27 LLMVox31.5M2.401.361674.15 CTC-TTS-F33.6M1.801.041594.15 CTC-TTS-L34.7M1.500.792104.15 embedding dimension. All models are trained on 4 RTX 3090 GPUs with a total batch size of 32. We use the AdamW [24] op- timizer (ÎČ 1 = 0.9, ÎČ 2 = 0.95, Δ = 10 â6 ) and a cosine learning rate scheduler with warm-up to 3Ă 10 â4 in 25k steps. Train- ing steps are 320k for multi-speaker and 1M for single-speaker. The weight decay is set to 0.1. We use flash-attention [25] for fast training and KV-Cache for inference. 4.3. Evaluation metrics Objective metrics.We use Word Error Rate (WER) and Character Error Rate (CER) to evaluate intelligibility. whisper-large-v3 [26] and Conformer-Transducer 2 are used as ASR models for single- and multi-speaker experiments, respectively. Speech naturalness is measured by UTMOS [27]. First-packet latency (FPL-A, assuming the full text is available for TTS) is reported for single-speaker experiments. Speaker similarity (SPK) is computed using WavLM-Base-Plus-SV [28] embeddings. Subjective metrics. We conduct Mean Opinion Score (MOS) for naturalness and Similarity MOS (SMOS) for speaker simi- larity. 30 samples are randomly selected per system and eval- uated by 20 listeners on a 1â5 scale, with results reported as mean scores with 95% confidence intervals. 2 https://huggingface.co/nvidia/stt_en_ conformer_transducer_xlarge Table 2: Experimental results of different methods on the continuation task (bold: best, underline: second best). GroupMethodParasWER%âCER%âSPKâUTMOSâMOSâSMOSâ Ground TruthNANA1.920.69NA4.0864.28± 0.060 4.60± 0.048 Our Method CTC-TTS-F158.47M5.202.680.9304.0134.31± 0.0574.58± 0.050 CTC-TTS-L159.58M4.822.470.9294.050 4.33± 0.061 4.60± 0.049 Ablation CTC+ELLA-V159.58M12.017.370.9284.0214.00± 0.062 4.39± 0.058 MFA+ELLA-V159.58M10.986.990.9284.0213.94± 0.066 4.44± 0.056 MFA+bi-word159.58M5.142.630.9304.0104.25± 0.061 4.50± 0.051 Table 3: Experimental results of different methods on the cross-speaker task. GroupMethodParasWER%âCER%âSPKâUTMOSâMOSâSMOSâ Ground TruthNANANANANA3.5274.18± 0.068 4.14± 0.072 Our Method CTC-TTS-F158.47M8.024.200.8803.9034.16± 0.0643.85± 0.071 CTC-TTS-L159.58M6.333.210.878 3.971 4.23± 0.060 3.98± 0.073 Ablation CTC+ELLA-V159.58M20.8611.730.8693.8483.88± 0.073 3.94± 0.073 MFA+ELLA-V159.58M34.8919.580.8723.8733.75± 0.071 3.88± 0.074 MFA+bi-word159.58M7.53 3.990.8743.8404.14± 0.068 3.83± 0.076 5. Experimental results 5.1. Single-speaker streaming experiments Table 1 shows the results of LLMVox and the two CTC-TTS variants using greedy search. Compared to LLMVox, CTC- TTS-F achieves lower WER and CER while maintaining a shorter FPL-A (ms). The key difference lies in its adoption of CTC alignment and bi-word based sequences, demonstrat- ing the advantages of these two designs. Compared to CTC- TTS-F, CTC-TTS-L delivers even lower WER and CER with a slightly higher FPL-A. The two variants can be selected based on latency and quality requirements. All three methods have identical UTMOS scores (reflecting comparable naturalness), as UTMOS prioritizes speech naturalness over content. 5.2. Multi-speaker zero-shot experiments For the multi-speaker experiments, we reproduce the ELLA-V setup on the zero-shot task using MFA alignment and ELLA- Vâs training sequence, which we refer to as MFA+ELLA-V. We further conduct ablation studies with different alignment and training sequences: CTC alignment with ELLA-Vâs sequence (CTC+ELLA-V), and MFA alignment with CTC-TTS-Lâs se- quence (MFA+bi-word). Following ELLA-V, we use nucleus sampling in multi-speaker generation for more stable results. Continuation. Given a text segment and its corresponding 3-second prefixed speech, the task aims to synthesize speech for the remaining text. Results are shown in Table 2. For meth- ods using bi-word sequences, CTC-TTS-F achieves competi- tive performance compared with MFA+bi-word, while CTC- TTS-L outperforms MFA+bi-word in all metrics except SPKâ demonstrating the superiority of CTC alignment. For methods using CTC alignment, our methods outperform CTC+ELLA-V across the board, which may stem from the limited context pro- vided by ELLA-Vâs local advance mechanism and further val- idates the advantage of the bi-word interleaving scheme. No- tably, CTC-TTS-L delivers near-optimal performance on the entire continuation task, highlighting the merits of combining CTC alignment, bi-word training sequences, and length-wise token concatenation. Cross-speaker. Given about 3 seconds of speech and its transcribed text as a prompt, this task synthesizes speech for another utterance. Results are shown in Table 3. Due to the out- of-domain testing, all results are slightly worse than in the con- tinuation task, but the overall trends are similar. As in the con- tinuation task, CTC-TTS-L achieves near-optimal performance on the cross-speaker task. CTC-TTS-F is slightly worse than MFA+bi-word; however, CTC-TTS-F uses feature-level stack- ing, whereas MFA+bi-word uses length-wise concatenation, so they are not directly comparable. Overall, combining CTC alignment with bi-word sequences achieves strong performance in this out-of-domain setting. When using ELLA-Vâs train- ing sequence, both CTC+ELLA-V and MFA+ELLA-V yield poor performance, highlighting the limitations of ELLA-Vâs sequence organization. Notably, CTC+ELLA-V outperforms MFA+ELLA-V in WER and CER, whereas MFA+ELLA-V is better on the in-domain continuation task. This indicates that MFA alignment performs well for in-domain continuation, while CTC alignment generalizes better to out-of-domain cross- speaker scenarios. 6. Conclusion This paper presents CTC-TTS, which uses CTC alignment to derive phonemeâspeech correspondence for an LLM-based dual-streaming TTS model and trains on bi-word interleaved sequences. We introduce two variants, CTC-TTS-L and CTC- TTS-F, which implement bi-word interleaving along the length and feature dimensions, respectively, providing a practical qualityâlatency trade-off. Experiments show that CTC-TTS outperforms fixed-ratio interleaving and MFA-based baselines on streaming synthesis and zero-shot tasks. Potentially inter- esting future work includes replacing the current WFST-based Phonetisaurus with neural G2P models such as the CTC-based one in JSA-SPG [29], and leveraging recent progress in neu- ral forced alignment and speechâtext alignment models to ob- tain more precise boundaries and further improve sequence con- struction and streaming controllability. The code will be re- leased upon paper acceptance. 7. Generative AI Use Disclosure Generative AI tools are used in this work only for language edit- ing, polishing, and formatting of the manuscript. They are not used to generate any core content, research ideas, experimental designs, results, or major textual parts of the paper. All scien- tific contributions, including model design, experiments, analy- sis, and conclusions, are completed by the authors. 8. References [1] S. Chen, C. Wang, Y. Wu, Z. Zhang, L. Zhou, S. Liu, Z. Chen, Y. Liu, H. Wang, J. Li, L. He, S. Zhao, and F. Wei, âNeural codec language models are zero-shot text-to-speech synthesizers,â IEEE/ACM Trans. Audio, Speech, Language Process., vol. 33, p. 705â718, 2025. [2] P. Anastassiou, J. Chen, J. Chen, Y. Chen, Z. Chen, Z. Chen, J. Cong, L. Deng, C. Ding, L. Gao, M. Gong, P. Huang, Q. Huang, Z. Huang, Y. Huo, D. Jia, C. Li, F. Li, H. Li, J. Li, X. Li, X. Li, L. Liu, S. Liu, S. Liu, X. Liu, Y. Liu, Z. Liu, L. Lu, J. Pan, X. Wang, Y. Wang, Y. Wang, Z. Wei, J. Wu, C. Yao, Y. Yang, Y. Yi, J. Zhang, Q. Zhang, S. Zhang, W. Zhang, Y. Zhang, Z. Zhao, D. Zhong, and X. Zhuang, âSeed-TTS: A family of high-quality versatile speech generation models,â arXiv:2406.02430, 2024. [3] Z. Du, Q. Chen, S. Zhang, K. Hu, H. Lu, Y. Yang, H. Hu, S. Zheng, Y. Gu, Z. Ma, Z. Gao, and Z. Yan, âCosyVoice: A scalable multilingual zero-shot text-to-speech synthesizer based on supervised semantic tokens,â arXiv:2407.05407, 2024. [4] Z. Du, Y. Wang, Q. Chen, X. Shi, X. Lv, T. Zhao, Z. Gao, Y. Yang, C. Gao, H. Wang, F. Yu, H. Liu, Z. Sheng, Y. Gu, C. Deng, W. Wang, S. Zhang, Z. Yan, and J. Zhou, âCosyVoice 2: Scal- able streaming speech synthesis with large language models,â arXiv:2412.10117, 2024. [5] S. Ji, Z. Jiang, W. Wang, Y. Chen, M. Fang, J. Zuo, Q. Yang, X. Cheng, Z. Wang, R. Li, Z. Zhang, X. Yang, R. Huang, Y. Jiang, Q. Chen, S. Zheng, and Z. Zhao, âWavTokenizer: An efficient acoustic discrete codec tokenizer for audio language modeling,â in Proc. International Conference on Learning Representations (ICLR), 2025. [6] N. Zeghidour, A. Luebs, A. Omran, J. Skoglund, and M. Tagliasacchi, âSoundStream: An end-to-end neural audio codec,â IEEE/ACM Trans. Audio, Speech, Language Process., vol. 30, p. 495â507, 2022. [7] A. D Ì efossez, N. Zeghidour, N. Usunier, L. Bottou, and F. Bach, âHigh fidelity neural audio compression,â Trans. Mach. Learn. Res., 2023. [8] M. McAuliffe, M. Socolof, S. Mihuc, M. Wagner, and M. Son- deregger, âMontreal Forced Aligner: Trainable text-speech align- ment using Kaldi,â in Proc. Interspeech, 2017. [9] A. Graves, S. Fern Ì andez, F. Gomez, and J. Schmidhuber, âCon- nectionist temporal classification: labelling unsegmented se- quence data with recurrent neural networks,â in Proc. Interna- tional Conference on Machine Learning (ICML), 2006. [10] Y. Yang, S. Liu, J. Li, H. Wang, L. Meng, H. Sun, Y. Liang, Z. Ma, Y. Hu, R. Zhao, Y. Lu, and X. Chen, âInterleaved speech-text language models for simple streaming text-to-speech synthesis,â arXiv:2412.16102, 2024. [11] Y. Gong, X. Feng, S. Liu, Z. Xu, C. Zhang, Y. Wu, J. Li, H. Peng, and F. Wei, âStreamMel: Real-time zero-shot text-to-speech via interleaved continuous autoregressive modeling,â IEEE Signal Process. Lett., vol. 31, p. 3530â3534, 2024. [12] S. Shikhar, M. I. Kurpath, S. S. Mullappilly, J. Lahoud, F. S. Khan, R. M. Anwer, S. Khan, and H. Cholakkal, âLLMVoX: Autore- gressive streaming text-to-speech model for any LLM,â in Proc. Findings of the Association for Computational Linguistics (ACL), 2025. [13] R. H. Bai, Z. Gu, T. Likhomanenko, and N. Jaitly, âSpeak- Stream:Streaming text-to-speech with interleaved data,â arXiv:2505.19206, 2025. [14] Z. Sheng, Z. Du, S. Zhang, Z. Yan, Y. Yang, and Z. Ling, âSync- Speech: Low-latency and efficient dual-stream text-to-speech based on temporal masked transformer,â arXiv:2502.11094, 2025. [15] R. Sennrich, B. Haddow, and A. Birch, âNeural machine transla- tion of rare words with subword units,â in Proc. Annual Meeting of the Association for Computational Linguistics (ACL), 2016. [16] Y. Song, Z. Chen, X. Wang, Z. Ma, and X. Chen, âELLA-V: Sta- ble neural codec language modeling with alignment-guided se- quence reordering,â in Proc. AAAI Conference on Artificial Intel- ligence (AAAI), 2025. [17] R. Huang, X. Zhang, Z. Ni, L. Sun, M. Hira, J. Hwang, V. Manohar, V. Pratap, M. Wiesner, S. Watanabe, D. Povey, and S. Khudanpur, âLess peaky and more accurate CTC forced align- ment by label priors,â in Proc. IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP), 2024. [18] V. Panayotov, G. Chen, D. Povey, and S. Khudanpur, âLib- riSpeech: An ASR corpus based on public domain audio books,â in Proc. IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP), 2015. [19] S. Yusuyin, T. Ma, H. Huang, W. Zhao, and Z. Ou, âWhis- tle: Data-efficient multilingual and crosslingual speech recogni- tion via weakly phonetic supervision,â IEEE/ACM Trans. Audio, Speech, Language Process., vol. 33, p. 1440â1453, 2025. [20] A. Gulati, J. Qin, C.-C. Chiu, N. Parmar, Y. Zhang, J. Yu, W. Han, S. Wang, Z. Zhang, Y. Wu, and R. Pang, âConformer: Convolution-augmented transformer for speech recognition,â in Proc. Interspeech, 2020. [21] J. R. Novak, N. Minematsu, and K. Hirose, âPhonetisaurus: Ex- ploring grapheme-to-phoneme conversion with joint n-gram mod- els in the WFST framework,â Nat. Lang. Eng., vol. 22, no. 6, p. 907â938, 2016. [22] M. Mohri, F. Pereira, and M. Riley, Speech recognition with weighted finite-state transducers. Springer, 2008, p. 559â584. [23] Z. Xie and C. Wu, âMini-Omni: Language models can hear, talk while thinking in streaming,â arXiv:2408.16725, 2024. [24] I. Loshchilov and F. Hutter, âDecoupled weight decay regulariza- tion,â in Proc. International Conference on Learning Representa- tions (ICLR), 2019. [25] T. Dao, D. Y. Fu, S. Ermon, A. Rudra, and C. R Ì e, âFlashAttention: Fast and memory-efficient exact attention with I/O-awareness,â in Proc. Advances in Neural Information Processing Systems (NeurIPS), 2022. [26] A. Radford, J. W. Kim, T. Xu, G. Brockman, C. McLeavey, and I. Sutskever, âRobust speech recognition via large-scale weak su- pervision,â in Proc. International Conference on Machine Learn- ing (ICML), 2023. [27] T. Saeki, D. Xin, W. Nakata, T. Koriyama, S. Takamichi, and H. Saruwatari, âUTMOS: UTokyo-SaruLab system for Voice- MOS challenge 2022,â in Proc. Interspeech, 2022. [28] S. Chen, C. Wang, Z. Chen, Y. Wu, S. Liu, Z. Chen, J. Li, N. Kanda, T. Yoshioka, X. Xiao, J. Wu, L. Zhou, S. Ren, Y. Qian, Y. Qian, M. Zeng, X. Yu, and F. Wei, âWavLM: Large-scale self- supervised pre-training for full stack speech processing,â IEEE J. Sel. Top. Signal Process., vol. 16, no. 6, p. 1505â1518, 2022. [29] S. Yusuyin, T. Ma, H. Huang, and Z. Ou, âPronunciation- lexicon free training for phoneme-based crosslingual ASR via joint stochastic approximation,â IEEE/ACM Trans. Audio, Speech, Language Process., vol. 34, p. 272â284, 2026.