REVIEW 2 major objections 5 minor 46 references
Scheduled Interleaved Speech-Text Training for Speech-to-Speech Translation with LLMs
T0 review · 2 major / 5 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read Fine-tuning an LLM for speech-to-speech translation is more effective when word-aligned text tokens are interleaved into the speech-unit sequence and their ratio is gradually decayed to zero during training.
desk verdict Useful interleaved fine-tuning recipe, but the scheduling claim is not supported by the only comparison that tests it. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The central mechanism is Algorithm 1, which constructs interleaved speech-text units by randomly selecting word spans (span lengths drawn from a Poisson distribution) and replacing the corresponding speech-unit spans with their BPE text tokens. The replacement is governed by a text ratio p, which the paper schedules to decay from 0.9 by 0.1 every 300 training steps, so the model starts with mostly text-like input and gradually shifts to pure speech units. Word alignments come from the CTC output of an ASR-fine-tuned w2v-BERT encoder, so no external aligner is needed. This machinery is doing the work of progressively bridging the length and representation gaps between speech and text modalities during fine-tuning.
What would settle it
Take a low-resource language pair and rerun scheduled interleaving with alignments deliberately corrupted (e.g., random shifts of span boundaries or equal-interval spans). If the ASR-BLEU gain over the speech-only baseline does not disappear or shrink substantially compared to the aligned version, then alignment accuracy is not the load-bearing condition the paper claims.
Extended reading notes
Core claim
The central claim, stated in the abstract and conclusion, is that scheduled interleaved speech-text training improves speech-to-speech translation performance of LLMs, attributable to better modality adaptation. Concretely, fine-tuning LLaMA3.2-1B with interleaved speech-text units whose text ratio decays from 0.9 to 0 outperforms fine-tuning on speech units alone in ASR-BLEU on all seven CVSS pairs, e.g. Pt-en 19.5 vs 10.3 and Ru-en 14.1 vs 6.0, while UTMOS speech quality stays roughly constant. The paper further claims the scheduling itself matters: interleaving at a constant text ratio of 0.3 is worse, and interleaving on both the input and output sides, guided by word-level CTC alignments, is necessary.
Load-bearing premise
The method assumes the CTC word alignments correctly identify, for every training utterance in every source language, which spans of speech units correspond to which words.
Editorial extensions
If this is right
- Scheduled ILT improves ASR-BLEU over the speech-only baseline on all seven tested CVSS language pairs, with the largest gains on low-resource pairs.
- Interleaving at a constant text ratio does not reproduce the gain; the decay schedule is a necessary ingredient.
- Both source-side and target-side interleaving are needed; interleaving only one side loses most of the benefit.
- Accurate word-level alignment is required; replacing speech spans at equal intervals instead of at CTC alignments drops Pt-en from 19.5 to 11.5 ASR-BLEU.
- Speech quality, measured by UTMOS, stays high (around 4.2) across training methods, so the translation gain is not bought with degraded audio.
Reading between the lines
- The method's benefit should transfer to other decoder-only speech tasks, such as spoken dialog or speech continuation, wherever a text-pretrained model must be adapted to discrete speech units with limited data.
- The schedule hyperparameters (starting ratio 0.9, decay step 300, Poisson span length) are untested across tasks; the optimal decay may depend on language pair length ratios and data size, so the method may need per-task tuning.
- Because the gain concentrates in low-resource pairs, a testable extension is to use the scheduled interleaving as the fine-tuning objective for zero-shot or few-shot S2ST with more languages than seen in supervised data.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes scheduled interleaved speech-text training for speech-to-speech translation (S2ST) with LLMs. The method interleaves word-aligned text tokens into speech-unit sequences at both the source and target sides, and gradually decays the text ratio from 0.9 to 0 during fine-tuning. Experiments on CVSS with LLaMA3.2-1B show consistent ASR-BLEU improvements over a speech-only baseline across seven languages, with larger gains in lower-resource languages. Ablations indicate that both-side interleaving, real CTC word alignments, and interleaving rather than masking are all important. The paper also analyzes the evolution of length and representation gaps during training.
Significance. If the central claim holds, the method provides a straightforward and effective way to adapt text-only LLMs to S2ST, which is particularly valuable for low-resource language pairs. The ablation design is thoughtful: it separates the contributions of input/output interleaving, alignment quality, and the difference between interleaving and masking. The analysis in Figure 3 offers a plausible mechanistic explanation through progressive modality adaptation. However, the specific claim that the decay schedule itself is beneficial is not yet empirically isolated, because the only non-scheduled control is confounded with average text ratio. The paper is otherwise well positioned for the speech/LLM community, and the identified issue is fixable with additional controlled experiments.
major comments (2)
- [Section 3.2 and Table 2] The comparison that is supposed to isolate the effect of scheduling compares 'Scheduled ILT' (p decaying from 0.9 by 0.1 per 300 steps) with 'ILT w/o scheduling' at a constant p=0.3. These two conditions differ in two ways: the presence/absence of decay and the average fraction of text tokens observed during training. The scheduled run's time-averaged text ratio is never reported, and footnote 5 states that the actual ratio exceeds p because of Algorithm 1's stopping rule, with the Poisson span-length parameter lambda left unreported. This means the constant-p=0.3 control cannot establish that gradual decay, rather than the total quantity of text exposure, drives the gains. The confound is compounded by the fact that constant p=0.3 is worse than the baseline in Fr-en, De-en, Es-en, and Ca-en (25.8 vs 28.8, 22.1 vs 27.3, 21.9 vs 33.5, 17.8 vs 23.8), so it is not a neutral reference. To support the central claim about scheduling, the authors should add a constant-p condition matched to the scheduled run's time-averaged actual text ratio, and ideally also report schedule ablations (different initial p, different decay steps, or an increasing-p schedule) to show that the direction and rate of decay matter.
- [Tables 2 and 3] No multiple seeds, significance tests, or confidence intervals are reported for any condition. The paper's central empirical claims are that scheduled ILT consistently improves over baseline and that scheduling is effective. The cross-language trend is consistent, but all results are single runs; observed differences of 2-8 ASR-BLEU points could be affected by training variability, especially for the smaller low-resource subsets. At least 2-3 seeds with means and standard deviations, or pairwise significance tests, should be provided for the key comparisons in Tables 2 and 3.
minor comments (5)
- [Section 4 / Algorithm 1] The Poisson parameter lambda used to sample span lengths in Algorithm 1 is never reported, even though it directly affects the realized text ratio and therefore the quantities compared in Table 2. Please report lambda and the empirical average text ratio for each condition.
- [Section 4] The total number of training steps per language is not reported, so the meaning of 'every 300 steps' for the decay schedule is unclear. Please report the number of steps or epochs for each language subset.
- [Section 4 / Table 3] The ablation 'Interleave without alignment' shows that using equal-interval spans degrades performance (11.5 vs 19.5 ASR-BLEU on Pt-en), but the quality of the CTC alignments for the seven languages is not assessed. Reporting word/character alignment error rates, at least for the low-resource languages, would make the reliance on alignment more transparent.
- [Figure 3] The representation-similarity analysis in Figure 3 is only shown for Pt-en and is described qualitatively. Reporting the numerical similarity values at the final training step, or a summary statistic, would strengthen the claim that scheduled ILT leads to better final speech-text alignment.
- [Abstract and Conclusion] The phrase 'especially for languages with limited training data' is supported by a visual trend in Table 2, but no correlation coefficient or other statistical evidence is provided. A simple linear regression of gains against training hours, or a scatter plot, would substantiate this claim.
Circularity Check
No significant circularity: the S2ST improvement claims are empirical, evaluated with external metrics, and none of the load-bearing steps reduces to the paper's own inputs.
full rationale
The paper is an empirical fine-tuning study. Its central claim is that scheduled interleaved speech-text training improves speech-to-speech translation, measured by Whisper ASR-BLEU and UTMOS on held-out CVSS test sets. These metrics come from external models and public corpus annotations, not from quantities defined by the proposed method. There is no derivation chain in which a prediction is equivalent to an input by construction. Eq. (3) is simply the training objective, and Algorithm 1 defines the interleaving preprocessing; neither assumes the conclusion that scheduling helps. The schedule hyperparameters (initial p=0.9, decay 0.1 per 300 steps) are hand-chosen rather than fitted to the evaluation metric, so no fitted parameter is renamed as a prediction. The paper cites AudioPaLM and SpiRitLM as prior work for context and inspiration, but those citations are not self-citations load-bearing for the current claim, and no uniqueness theorem or ansatz is imported from the authors' own prior work. The skeptical concern that the constant-p=0.3 control may not isolate gradual decay from average text exposure, especially given footnote 5's admission that the actual text ratio exceeds p, is a genuine experimental confound and a correctness risk, but it is not circularity: the comparison still tests a concrete training recipe against external metrics and does not reduce by definition to the method's inputs. No self-definitional, fitted-input, self-citation-chain, or renaming pattern is present. Therefore the honest finding is no significant circularity.
Assumptions & free parameters
free parameters (3)
- Initial text ratio and decay schedule =
p=0.9, decay 0.1 per 300 steps down to 0
- Constant interleaving ratio for ILT w/o scheduling =
p=0.3
- Poisson span length parameter (lambda) =
unreported
assumptions (4)
- domain assumption CTC-based word alignments from the ASR-fine-tuned w2v-BERT are accurate for all 21 source languages plus English.
- domain assumption Semantic units from the 20th w2v-BERT layer clustered by k-means encode the semantic content needed for translation.
- domain assumption Fine-tuned LLMs can learn speech-unit input and output when vocabulary is extended, and CoT factorization does not break end-to-end optimization.
- ad hoc to paper The decay schedule (start 0.9, step 0.1 per 300 steps) is a suitable curriculum for this model and data scale.
Cite this review
Pith. "Pith review of Scheduled Interleaved Speech-Text Training for Speech-to-Speech Translation with LLMs." pith.science (2026). https://pith.science/paper/ARAEYOPY
@misc{pith2026250610299,
author = {Pith},
title = {Pith review of: Scheduled Interleaved Speech-Text Training for Speech-to-Speech Translation with LLMs},
year = {2026},
howpublished = {\url{https://pith.science/paper/ARAEYOPY}},
note = {Machine review of arXiv:2506.10299}
}
read the original abstract
Speech-to-speech translation (S2ST) has been advanced with large language models (LLMs), which are fine-tuned on discrete speech units. In such approaches, modality adaptation from text to speech has been an issue. LLMs are trained on text-only data, which presents challenges to adapt them to speech modality with limited speech-to-speech data. To address the training difficulty, we propose scheduled interleaved speech--text training in this study. We use interleaved speech--text units instead of speech units during training, where aligned text tokens are interleaved at the word level. We gradually decrease the ratio of text as training progresses, to facilitate progressive modality adaptation from text to speech. We conduct experimental evaluations by fine-tuning LLaMA3.2-1B for S2ST on the CVSS dataset. We show that the proposed method consistently improves the translation performances, especially for languages with limited training data.
Figures
Reference graph
Works this paper leans on
-
[1]
Introduction Speech-to-speech translation (S2ST) is a promising technology converts speech from one language to another, which can be useful for communicating with people who do not share the same language. Traditionally, S2ST has been solved by cas- caded approaches, which consist of automatic speech recog- nition (ASR), machine translation (MT), and tex...
arXiv 2025
-
[2]
Related work 2.1. Speech-to-speech translation (S2ST) End-to-end speech-to-speech translation (S2ST) systems have been actively studied, which is jointly optimized as a speech-to- speech task [2–9]. Early studies have solved the task by directly predicting spectrograms in a target language with sequence-to- sequence models [2,3]. Recently, speech synthesi...
-
[3]
Method 3.1. Speech-to-speech translation system As shown in Figure 2, we adopt a speech-to-speech translation (S2ST) system fine-tuned from an LLM, as in AudioPaLM [7]. LetS src denote semantic units in a source language, andS tgt denote those in a target language. End-to-end S2ST is trained to predictS tgt fromS src, by minimizing the following objective...
-
[4]
We use the interleaved speech–text unitsI src p andI tgt p in- stead of speech semantic units during LLM fine-tuning, where pdenotes the text ratio. The Eq.(2) is rewritten withI src p and I tgt p as: L=−logp(I tgt p |T tgt, Tsrc, Isrc p ;θ) p(T tgt|T src, Isrc p ;θ)p(T src|I src p ;θ).(3) Algorithm 1 explains the detail of the interleaving algo- rithm. T...
-
[5]
Experimental evaluations We conducted speech-to-speech translation (S2ST) experiments based on the CVSS [27] corpus. The CVSS corpus is a widely used corpus for multilingual S2ST, built by speech synthe- sis from the CoV oST2 [36] speech-to-text translation corpus. CVSS consists of two versions: CVSS-C with a single high- quality canonical voice and CVSS-...
-
[6]
Conclusions In this study, we have proposed a new training method named scheduled interleaved speech–text training for LLM- based speech-to-speech translation (S2ST). We use interleaved speech–text units as the input and output of LLM, instead of the speech units, during fine-tuning LLM. We gradually decrease the ratio of text in interleaving, for better ...
-
[7]
The ATR multilingual speech-to-speech translation system,
S. Nakamura, K. Markov, H. Nakaiwa, G. Kikui, H. Kawai, T. Jitsuhiro, J.-S. Zhang, H. Yamamoto, E. Sumita, and S. Ya- mamoto, “The ATR multilingual speech-to-speech translation system,”TASLP, 2006
work page 2006
-
[8]
Direct speech-to-speech translation with a sequence- to-sequence model,
Y . Jia, R. J. Weiss, F. Biadsy, W. Macherey, M. Johnson, Z. Chen, and Y . Wu, “Direct speech-to-speech translation with a sequence- to-sequence model,” inInterspeech, 2019
work page 2019
Show all 46 references
-
[9]
Trans- latotron 2: High-quality direct speech-to-speech translation with voice preservation,
Y . Jia, M. T. Ramanovich, T. Remez, and R. Pomerantz, “Trans- latotron 2: High-quality direct speech-to-speech translation with voice preservation,” inInternational Conference on Machine Learning, 2021
2021
-
[10]
Direct speech- to-speech translation with discrete units,
A. Lee, P.-J. Chen, C. Wang, J. Gu, S. Popuri, X. Ma, A. Polyak, Y . Adi, Q. He, Y . Tang, J. Pino, and W.-N. Hsu, “Direct speech- to-speech translation with discrete units,” inACL, 2022
2022
-
[11]
UnitY: Two- pass direct speech-to-speech translation with discrete units,
H. Inaguma, S. Popuri, I. Kulikov, P.-J. Chen, C. Wang, Y .-A. Chung, Y . Tang, A. Lee, S. Watanabe, and J. Pino, “UnitY: Two- pass direct speech-to-speech translation with discrete units,” in ACL, 2023
2023
-
[12]
SeamlessM4T: Massively mul- tilingual&multimodal machine translation,
SeamlessCommunicationet al., “SeamlessM4T: Massively mul- tilingual&multimodal machine translation,” 2023
2023
-
[13]
AudioPaLM: A large language model that can speak and listen,
P. K. Rubensteinet al., “AudioPaLM: A large language model that can speak and listen,”ArXiv, 2023
2023
-
[14]
PolyV oice: Language models for speech to speech translation,
Q. qian Dong, Z. Huang, Q. Tian, C. Xu, T. Ko, yunlong zhao, S. Feng, T. Li, K. Wang, X. Cheng, F. Yue, Y . Bai, X. Chen, L. Lu, Z. MA, Y . Wang, M. Wang, and Y . Wang, “PolyV oice: Language models for speech to speech translation,” inICLR, 2024
2024
-
[15]
MSLM-S2ST: A multitask speech language model for textless speech-to-speech translation with speaker style preserva- tion,
Y . Peng, I. Kulikov, Y . Yang, S. Popuri, H. Lu, C. Wang, and H. Gong, “MSLM-S2ST: A multitask speech language model for textless speech-to-speech translation with speaker style preserva- tion,”ArXiv, 2024
2024
-
[16]
HuBERT: Self-supervised speech representation learning by masked prediction of hidden units,
W.-N. Hsu, B. Bolte, Y .-H. H. Tsai, K. Lakhotia, R. Salakhutdi- nov, and A. rahman Mohamed, “HuBERT: Self-supervised speech representation learning by masked prediction of hidden units,” TASLP, 2021
2021
-
[17]
w2v-BERT: Combining contrastive learning and masked language modeling for self-supervised speech pre- training,
Y .-A. Chung, Y . Zhang, W. Han, C.-C. Chiu, J. Qin, R. Pang, and Y . Wu, “w2v-BERT: Combining contrastive learning and masked language modeling for self-supervised speech pre- training,”ASRU, 2021
2021
-
[18]
SoundStream: An end-to-end neural audio codec,
N. Zeghidour, A. Luebs, A. Omran, J. Skoglund, and M. Tagliasacchi, “SoundStream: An end-to-end neural audio codec,”TASLP, 2021
2021
-
[19]
High fidelity neural audio compression,
A. D ´efossez, J. Copet, G. Synnaeve, and Y . Adi, “High fidelity neural audio compression,”arXiv, 2022
2022
-
[20]
Language models are few-shot learners,
T. B. Brownet al., “Language models are few-shot learners,” ArXiv, 2020
2020
-
[21]
Prompting large language models with speech recognition abilities,
Y . Fathullah, C. Wu, E. Lakomkin, J. Jia, Y . Shangguan, K. Li, J. Guo, W. Xiong, J. Mahadeokar, O. Kalinli, C. Fuegen, and M. L. Seltzer, “Prompting large language models with speech recognition abilities,”ICASSP, 2023
2023
-
[22]
SLM: Bridge the thin gap between speech and text foun- dation models,
M. Wang, W. Han, I. Shafran, Z. Wu, C.-C. Chiu, Y . Cao, Y . Wang, N. Chen, Y . Zhang, H. Soltau, P. K. Rubenstein, L. Zilka, D. Yu, Z. Meng, G. Pundak, N. Siddhartha, J. Schalkwyk, and Y . Wu, “SLM: Bridge the thin gap between speech and text foun- dation models,”ASRU, 2023
2023
-
[23]
On decoder-only architecture for speech-to-text and large language model integration,
J. Wu, Y . Gaur, Z. Chen, L. Zhou, Y . Zhu, T. Wang, J. Li, S. Liu, B. Ren, L. Liu, and Y . Wu, “On decoder-only architecture for speech-to-text and large language model integration,” inASRU, 2023
2023
-
[24]
V oxtLM: Unified decoder-only models for consolidating speech recognition, synthesis and speech, text continuation tasks,
S. Maiti, Y . Peng, S. Choi, J. weon Jung, X. Chang, and S. Watan- abe, “V oxtLM: Unified decoder-only models for consolidating speech recognition, synthesis and speech, text continuation tasks,” ICASSP, 2023
2023
-
[25]
Qwen-Audio: Advancing universal audio understanding via unified large-scale audio-language models,
Y . Chu, J. Xu, X. Zhou, Q. Yang, S. Zhang, Z. Yan, C. Zhou, and J. Zhou, “Qwen-Audio: Advancing universal audio understanding via unified large-scale audio-language models,”ArXiv, 2023
2023
-
[26]
SpeechGPT: Empowering large language models with intrinsic cross-modal conversational abilities,
D. Zhang, S. Li, X. Zhang, J. Zhan, P. Wang, Y . Zhou, and X. Qiu, “SpeechGPT: Empowering large language models with intrinsic cross-modal conversational abilities,” inEMNLP, 2023
2023
-
[27]
SALMONN: Towards generic hearing abilities for large language models,
C. Tang, W. Yu, G. Sun, X. Chen, T. Tan, W. Li, L. Lu, Z. MA, and C. Zhang, “SALMONN: Towards generic hearing abilities for large language models,” inICLR, 2024
2024
-
[28]
PaLM 2 technical report,
R. Anilet al., “PaLM 2 technical report,”ArXiv, 2023
2023
-
[29]
Bridging the modality gap for speech-to-text translation,
Y . Liu, J. Zhu, J. Zhang, and C. Zong, “Bridging the modality gap for speech-to-text translation,”ArXiv, 2020
2020
-
[30]
Push- ing the limits of zero-shot end-to-end speech translation,
I. Tsiamas, G. G ´allego, J. Fonollosa, and M. Costa-juss `a, “Push- ing the limits of zero-shot end-to-end speech translation,” inACL, 2024
2024
-
[31]
SpiRit-LM: In- terleaved spoken and written language model,
T. Nguyen, B. Muller, B. Yu, M. R. Costa-juss `a, M. Elbayad, S. Popuri, P.-A. Duquenne, R. Algayres, R. Mavlyutov, I. Gat, G. Synnaeve, J. Pino, B. Sagot, and E. Dupoux, “SpiRit-LM: In- terleaved spoken and written language model,”TACL, 2024
2024
-
[32]
The llama 3 herd of models,
A. Dubeyet al., “The llama 3 herd of models,”ArXiv, 2024
2024
-
[33]
CVSS corpus and massively multilingual speech-to-speech translation,
Y . Jia, M. Tadmor Ramanovich, Q. Wang, and H. Zen, “CVSS corpus and massively multilingual speech-to-speech translation,” inLREC, 2022
2022
-
[34]
Speech resynthesis from discrete disentangled self-supervised representations,
A. Polyak, Y . Adi, J. Copet, E. Kharitonov, K. Lakhotia, W.-N. Hsu, A. rahman Mohamed, and E. Dupoux, “Speech resynthesis from discrete disentangled self-supervised representations,” inIn- terspeech, 2021
2021
-
[35]
HiFi-GAN: Generative adversar- ial networks for efficient and high fidelity speech synthesis,
J. Kong, J. Kim, and J. Bae, “HiFi-GAN: Generative adversar- ial networks for efficient and high fidelity speech synthesis,” in NeurIPS, 2020
2020
-
[36]
On generative spoken language modeling from raw audio,
K. Lakhotia, E. Kharitonov, W.-N. Hsu, Y . Adi, A. Polyak, B. Bolte, T.-A. Nguyen, J. Copet, A. Baevski, A. Mohamed, and E. Dupoux, “On generative spoken language modeling from raw audio,”TACL, 2021
2021
-
[37]
AudioLM: A language modeling approach to audio generation,
Z. Borsos, R. Marinier, D. Vincent, E. Kharitonov, O. Pietquin, M. Sharifi, D. Roblek, O. Teboul, D. Grangier, M. Tagliasacchi, and N. Zeghidour, “AudioLM: A language modeling approach to audio generation,”TASLP, 2023
2023
-
[38]
Neural codec language models are zero-shot text to speech synthesizers,
C. Wang, S. Chen, Y . Wu, Z.-H. 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,” TASLP, 2023
2023
-
[39]
Speak for- eign languages with your own voice: Cross-lingual neural codec language modeling,
Z.-H. Zhang, L. Zhou, C. Wang, S. Chen, Y . Wu, S. Liu, Z. Chen, Y . Liu, H. Wang, J. Li, L. He, S. Zhao, and F. Wei, “Speak for- eign languages with your own voice: Cross-lingual neural codec language modeling,”ArXiv, 2023
2023
-
[40]
Scaling speech-text pre-training with synthetic interleaved data,
A. Zeng, Z. Du, M. Liu, L. Zhang, S. Jiang, Y . Dong, and J. Tang, “Scaling speech-text pre-training with synthetic interleaved data,” ArXiv, 2024
2024
-
[41]
CTC-segmentation of large corpora for german end-to-end speech recognition,
L. Kurzinger, D. Winkelbauer, L. Li, T. Watzel, and G. Rigoll, “CTC-segmentation of large corpora for german end-to-end speech recognition,” inSPECOM, 2020
2020
-
[42]
CoV oST 2 and massively multilingual speech translation,
C. Wang, A. Wu, J. Gu, and J. Pino, “CoV oST 2 and massively multilingual speech translation,” inInterspeech, 2021
2021
-
[43]
ESPnet: End-to-end speech processing toolkit,
S. Watanabe, T. Hori, S. Karita, T. Hayashi, J. Nishitoba, Y . Unno, N. Enrique Yalta Soplin, J. Heymann, M. Wiesner, N. Chen, A. Renduchintala, and T. Ochiai, “ESPnet: End-to-end speech processing toolkit,” inInterspeech, 2018
2018
-
[44]
Robust speech recognition via large-scale weak su- pervision,
A. Radford, J. W. Kim, T. Xu, G. Brockman, C. McLeavey, and I. Sutskever, “Robust speech recognition via large-scale weak su- pervision,” inICML, 2022
2022
-
[45]
UTMOS: Utokyo-sarulab system for voicemos challenge 2022,
T. Saeki, D. Xin, W. Nakata, T. Koriyama, S. Takamichi, and H. Saruwatari, “UTMOS: Utokyo-sarulab system for voicemos challenge 2022,”Interspeech, 2022
2022
-
[46]
Investigating decoder-only large language models for speech-to-text translation,
C.-W. Huang, H. Lu, H. Gong, H. Inaguma, I. Kulikov, R. Mav- lyutov, and S. Popuri, “Investigating decoder-only large language models for speech-to-text translation,”Interspeech, 2024
2024
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.