REVIEW 5 major objections 5 minor 42 references
Counterfactual Activation Editing for Post-hoc Prosody and Mispronunciation Correction in TTS Models
T0 review · 5 major / 5 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read Editing a pretrained TTS model's inner activations at inference time can scale pitch, duration, and energy and fix mispronunciations, without retraining.
desk verdict A genuinely new combination for post-hoc TTS control, with honest but incomplete evidence: the causal link between probe gradients and decoder behavior is not tested, and the prosody metrics share their label pipeline. 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 load-bearing object is the linear probe $f$ mapping an encoder activation $x_i$ to an acoustic property, combined with the counterfactual update $x_i' = x_i + \eta \, \partial f_c / \partial x_i$. To keep the edited activation on the natural speech manifold, the update is performed in the 16-dimensional latent space of a $\beta$-VAE after mapping the activation through the VAE encoder, and a prototype loss from a VQ-VAE codebook pulls the edited latent back toward the nearest discrete prototype so that edits do not cross into subregions that change the spoken content. The claim that such edits affect the final audio rests on the assumption that the probe directions are causally aligned with the decoder's generation pathway.
What would settle it
For a fixed utterance, compare the CAE edit with a random perturbation of the same magnitude in activation space; if the random perturbation moves measured pitch, duration, or pronunciation by as much as the gradient edit does, the claimed causal alignment between the probe and the speech decoder is unsupported.
Extended reading notes
Core claim
The central discovery is that the final encoder layer of Tacotron 2, without any specialized training for control, encodes acoustic properties in a directionally usable form. Linear regressors trained on those activations predict duration, pitch, and energy well enough that gradient ascent toward a target value produces audible, roughly proportional changes in the synthesized speech, and a classifier over HuBERT-derived semantic tokens does the same for pronunciation. A naive edit in the raw activation space drifts off the data manifold, so the paper edits in the bottleneck of a beta-VAE and anchors the edit with a VQ-VAE prototype; this recovers predictable scaling of prosody and reduces mispronunciations. The authors present this as evidence that post-hoc decomposability, not a specially trained control module, is enough to give an encoder-decoder TTS model editable outputs.
Load-bearing premise
The method assumes that the direction a linear probe finds in activation space is causally aligned with what the decoder turns into audio, so that gradient ascent on the probe actually raises pitch, slows speech, or fixes pronunciation rather than just fooling the probe.
Editorial extensions
If this is right
- Any pretrained encoder-decoder TTS whose activations linearly encode these acoustic properties could be steered by the same recipe, without retraining.
- Prosody control becomes a per-phoneme or per-word operation, so users can scale duration or pitch for a single word within an utterance.
- Mispronunciation correction no longer requires a grapheme-to-phoneme dictionary, which matters for low-resource languages with sparse pronunciation resources.
- A single correction query, in the form of a speech sample of the intended pronunciation, is enough to define the target semantic token for the edit.
- The edit procedure can be applied after synthesis at inference, enabling iterative refinement of the output before it is delivered to the listener.
Reading between the lines
- If the linear-probe alignment generalizes beyond Tacotron 2, this turns any controllable probe into a control handle, but the paper only demonstrates causal alignment for one architecture, so cross-model transfer is untested.
- The feature entanglement the paper acknowledges (duration edits shift pitch) suggests a neuron-level variant that edits only the highest-weight dimensions could yield more orthogonal control; this is an extension the authors flag as future work.
- One testable extension is to use the same activation-editing recipe on non-autoregressive TTS models, where encoder activations may have different geometry and the manifold-preserving step may matter more.
- If the probe outputs are calibrated as a monotone control signal, CAE could be wrapped into a closed loop that measures actual prosody with an external pitch tracker and iterates until the desired value is reached; the paper does not report such a loop.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper introduces Counterfactual Activation Editing (CAE), a post-hoc method for controlling prosody and correcting mispronunciations in a pre-trained TTS model. The authors first train linear classifiers/regressors on intermediate encoder activations of Tacotron 2 to predict prosodic features (duration, pitch, energy) and semantic tokens derived from HuBERT. They then perform gradient ascent on the probe output, either directly in activation space or in the latent space of a beta-VAE with a prototype loss, to shift activations toward a target property. Experiments on LJSpeech demonstrate monotonic changes in measured prosodic features, improved phone-error-rate under large prosody edits, and reduced WER/PER for mispronounced words, together with a CMOS preference for corrected speech. The paper claims the method is model-agnostic and requires no retraining of the TTS model.
Significance. If the central claim holds, the paper provides a useful inference-time steering mechanism for encoder-decoder TTS systems, complementing existing retraining-based prosody controls and dictionary-based pronunciation correction. The work has several strengths: the idea of editing pretrained TTS representations is clearly presented; the mispronunciation evaluation uses Whisper, an independent ASR metric; and the demo page and audio examples are valuable. However, the significance is currently limited by the lack of causal validation, the use of a single TTS architecture, and the absence of statistical uncertainty estimates, all of which are needed to support the stated model-agnostic, post-hoc controllability claim.
major comments (5)
- [Section 3.1, Section 5.2, Figs. 2–3] The prosody evaluation is coupled to the label-generation pipeline used to train the probe. Section 3.1 describes extracting durations via a CTC/ASR system with monotonic alignment search, and then computing average pitch and energy from those alignments; the 'change ratio' in Figure 2 is measured with the same kinds of features. If the edit moves the probe's input along its gradient, the same pipeline will report a change even when an independent acoustic measurement would not. Please add an independent measurement (e.g., a different forced aligner, manual alignments, or an external pitch tracker) or demonstrate agreement on a held-out subset.
- [Section 3.2, Eqs. (1) and (4), Fig. 2, Table 1] The central causal claim is that the probe-gradient direction is a causal handle on the decoder. The experiments never include a negative control: random directions with matched norm, a probe trained on shuffled labels, or edits that only increase the probe output without target-specific direction. Without such a control, the observed duration/pitch/energy shifts could be a generic effect of moving activations away from their original values rather than evidence of the specific encoded property. Please add at least one negative-control condition to support the causal interpretation.
- [Section 4.1, Section 5, Abstract] The method is repeatedly described as model-agnostic, but all experiments use a single Tacotron 2 instantiation with WaveGlow. A second encoder-decoder TTS model (e.g., Transformer TTS or a non-autoregressive model) is needed to support the generality claim; the current evidence supports only 'works for one model'.
- [Section 5.3, Table 1] The mispronunciation experiment uses only 78 target words and reports aggregate means over them without confidence intervals or significance tests. It also does not compare against the SAC baseline [21] discussed in Section 2.2, despite the method being positioned as an alternative. Please include the SAC comparison (or a rationale for its absence), report uncertainty, and consider a per-word breakdown since 78 samples is small.
- [Section 3.2.2, Section 4.3] Several hyperparameters needed to reproduce the method are missing: the VQ-VAE codebook size K and dimension D, the prototype loss weight alpha in Eq. (7), the gradient step size eta in Eqs. (1) and (4), and the stopping threshold for the classifier output. Please report these values, or provide exact code.
minor comments (5)
- [Figure 1] The caption says 'Loss' but it is unclear whether lower is better; please clarify that the normalized classifier prediction loss is shown and specify which classifier and training details are used.
- [Eq. (2)] The neighborhood radius r is said to depend on the step size eta, but no formula or value is given; please state the relationship or remove the claim.
- [Section 3.1] The HuBERT k-means clustering uses 100 clusters, but it is not stated what data the k-means is fit on or how many frames are used; please clarify.
- [Table 2] The CMOS convention is unclear: 'After Correction 0.000' and 'Before Correction -0.764' suggests the corrected speech is the reference; please state this explicitly.
- [Section 5.2] The truncation trick [32] is compared against, but the description is vague; please give a one-sentence definition of how it is applied to encoder activations.
Circularity Check
No significant circularity: the prosody and mispronunciation controls are validated through the frozen TTS synthesis path and independent measurement, with no fitted parameter renamed as a prediction.
full rationale
The paper's derivation chain is not circular. The linear probes (regressor/classifier) are fit to acoustic/semantic labels extracted from original LJSpeech audio, but the controlled outputs are generated by the frozen Tacotron 2 encoder-decoder plus WaveGlow vocoder and then measured from the synthesized waveform or via Whisper ASR. For prosody, the evaluation reports the ratio of the modified acoustic feature measured after synthesis to the original value, not the probe output f(x') itself; nothing in Eqs. (1) or (4) equates the probe output to the measured acoustic feature, so the link is an empirical causal claim about the decoder, not a definitional identity. For mispronunciation, the evaluation uses independent Whisper-based WER/PER and text-embedding similarity, which does not share the training-label pipeline. The paper contains no load-bearing self-citations: references to HuBERT, beta-VAE, VQ-VAE, Whisper, and prior TTS work are external. The absence of a shuffled-label or random-direction negative control and the reliance on a single architecture are correctness/generality limitations, not circularity. No step can be exhibited where an equation reduces to its own input or where a fitted parameter is renamed as a prediction.
Assumptions & free parameters
free parameters (8)
- beta-VAE weight beta =
0.04
- beta-VAE latent dimension =
16
- Prototype loss weight alpha =
not reported
- Gradient step size eta =
not reported
- Classifier stopping threshold =
not reported
- Elastic net regularization lambda_1 and lambda_2 =
0.001 each
- HuBERT k-means cluster count =
100
- VQ-VAE codebook size K and dimension D =
not reported
assumptions (6)
- domain assumption HuBERT layer-6 semantic tokens represent pronunciation-relevant information at the word or phoneme level.
- domain assumption Linear classifiers are sufficient to probe TTS encoder representations.
- ad hoc to paper The beta-VAE latent space approximates the encoder activation manifold, so gradient edits in the latent space stay on the data manifold.
- ad hoc to paper VQ-VAE prototypes anchor edits to a content-preserving subregion of the latent space.
- domain assumption Editing encoder activations causes the decoder and vocoder to generate speech with the intended acoustic change.
- domain assumption ASR alignments and acoustic extraction from LJSpeech provide accurate duration, pitch, and energy labels.
Cite this review
Pith. "Pith review of Counterfactual Activation Editing for Post-hoc Prosody and Mispronunciation Correction in TTS Models." pith.science (2026). https://pith.science/paper/YTD2WVRW
@misc{pith2026250600832,
author = {Pith},
title = {Pith review of: Counterfactual Activation Editing for Post-hoc Prosody and Mispronunciation Correction in TTS Models},
year = {2026},
howpublished = {\url{https://pith.science/paper/YTD2WVRW}},
note = {Machine review of arXiv:2506.00832}
}
read the original abstract
Recent advances in Text-to-Speech (TTS) have significantly improved speech naturalness, increasing the demand for precise prosody control and mispronunciation correction. Existing approaches for prosody manipulation often depend on specialized modules or additional training, limiting their capacity for post-hoc adjustments. Similarly, traditional mispronunciation correction relies on grapheme-to-phoneme dictionaries, making it less practical in low-resource settings. We introduce Counterfactual Activation Editing, a model-agnostic method that manipulates internal representations in a pre-trained TTS model to achieve post-hoc control of prosody and pronunciation. Experimental results show that our method effectively adjusts prosodic features and corrects mispronunciations while preserving synthesis quality. This opens the door to inference-time refinement of TTS outputs without retraining, bridging the gap between pre-trained TTS models and editable speech synthesis.
Figures
Figures from the paper (1 more)
Reference graph
Works this paper leans on
-
[21]
Ctrl-P: Temporal Control of Prosodic Variation for Speech Synthesis
D. S. R. Mohan, V . Hu, T. H. Teh, A. Torresquintero, C. G. Wallis, M. Staib, L. Foglianti, J. Gao, and S. King, “Ctrl-p: Temporal control of prosodic variation for speech synthesis,”arXiv preprint arXiv:2106.08352, 2021
work page Pith review arXiv 2021
-
[1]
Introduction Advancements in Text-to-Speech (TTS) models [1, 2, 3, 4, 5] and neural vocoders [6, 7, 8, 9] have made synthetic voices nearly indistinguishable from human speech. Consequently, more attention has been attracted by refining the expressiveness of synthetic voices, particularly through the accurate manipula- tion of prosodic features and pronun...
-
[2]
Counterfactual Activation Editing for Post-hoc Prosody and Mispronunciation Correction in TTS Models
Related Work 2.1. TTS Prosody Control Text can be spoken in various ways due to semantic nuances, speaking styles, or inherent variability. Traditional approaches, such as unit-selection, capture this variability through speech databases [17]. In contrast, recent studies model prosodic vari- ation by predicting key prosodic features such as pitch, dura- t...
work page Pith review arXiv 2025
-
[3]
Proposed Method We first analyze intermediate representations produced by the encoder of an end-to-end TTS model, applicable to any encoder-decoder architectures. Consider a sequence of input featurest={t 1, . . . ,tn}, and letMbe a neural network model that transformstinto a se- ries of internal representationst M − →x={x1, . . . ,xn}. In this context,Mr...
-
[4]
Experimental Setup 4.1. TTS Model We experimented with Tacotron 2 [2] encoder-decoder archi- tecture, a model with about 28 million parameters, including an encoder with three convolutional layers followed by an LSTM layer. Although Tacotron 2 generates highly natural speech, it lacks explicit mechanisms to capture diverse prosodic contours without additi...
-
[5]
In planning its data processing techniques
Results Our experiments study the following questions: (1) Are acous- tic features encoded by the Tacotron 2 encoder? (2) Can counterfactual activation editing(CAE) effectively manipulate prosody? (3) Can CAE further correct mispronunciations? 5.1. Acoustic Correlation Analysis To assess the capacity of Tacotron 2 encoder layers to encap- sulate meaningfu...
-
[6]
Conclusions and Discussion In this work, we introduced a novel method for prosody con- trol and pronunciation correction in TTS models using Counter- factual Activation Editing, enabling post-hoc adjustments with- out retraining. Our experiments demonstrated that intermedi- ate representations within TTS models, specifically Tacotron 2, contain rich infor...
-
[7]
Acknowledgements This work was supported by Samsung Electronics MX Divi- sion and by Institute of Information & communications Tech- nology Planning & Evaluation (IITP) grant funded by the Korea government (MSIT) (No.2019-0-00075, Artificial Intelligence Graduate School Program (KAIST); No. 2022-0-00984, Devel- opment of Artificial Intelligence Technology...
work page 2019
Show all 42 references
-
[8]
Tacotron: Towards end-to-end speech synthesis,
Y . Wang, R. Skerry-Ryan, D. Stanton, Y . Wu, R. J. Weiss, N. Jaitly, Z. Yang, Y . Xiao, Z. Chen, S. Bengioet al., “Tacotron: Towards end-to-end speech synthesis,”arXiv preprint arXiv:1703.10135, 2017
2017 arXiv
-
[9]
Natural tts synthesis by conditioning wavenet on mel spectrogram predic- tions,
J. Shen, R. Pang, R. J. Weiss, M. Schuster, N. Jaitly, Z. Yang, Z. Chen, Y . Zhang, Y . Wang, R. Skerrv-Ryanet al., “Natural tts synthesis by conditioning wavenet on mel spectrogram predic- tions,” inICASSP. IEEE, 2018, pp. 4779–4783
2018
-
[10]
Neural speech synthe- sis with transformer network,
N. Li, S. Liu, Y . Liu, S. Zhao, and M. Liu, “Neural speech synthe- sis with transformer network,” inProceedings of the AAAI con- ference on artificial intelligence, vol. 33, no. 01, 2019, pp. 6706– 6713
2019
-
[11]
Fastspeech: Fast, robust and controllable text to speech,
Y . Ren, Y . Ruan, X. Tan, T. Qin, S. Zhao, Z. Zhao, and T.-Y . Liu, “Fastspeech: Fast, robust and controllable text to speech,” Advances in neural information processing systems, vol. 32, 2019
2019
-
[12]
Fastspeech 2: Fast and high-quality end-to-end text to speech,
Y . Ren, C. Hu, X. Tan, T. Qin, S. Zhao, Z. Zhao, and T.-Y . Liu, “Fastspeech 2: Fast and high-quality end-to-end text to speech,” arXiv preprint arXiv:2006.04558, 2020
2006 arXiv
-
[13]
Wavenet: A generative model for raw audio,
A. v. d. Oord, S. Dieleman, H. Zen, K. Simonyan, O. Vinyals, A. Graves, N. Kalchbrenner, A. Senior, and K. Kavukcuoglu, “Wavenet: A generative model for raw audio,”arXiv preprint arXiv:1609.03499, 2016
2016 arXiv
-
[14]
Waveglow: A flow-based generative network for speech synthesis,
R. Prenger, R. Valle, and B. Catanzaro, “Waveglow: A flow-based generative network for speech synthesis,” inICASSP. IEEE, 2019, pp. 3617–3621
2019
-
[15]
Mel- gan: Generative adversarial networks for conditional waveform synthesis,
K. Kumar, R. Kumar, T. De Boissiere, L. Gestin, W. Z. Teoh, J. Sotelo, A. De Brebisson, Y . Bengio, and A. C. Courville, “Mel- gan: Generative adversarial networks for conditional waveform synthesis,”Advances in neural information processing systems, vol. 32, 2019
2019
-
[16]
Hifi-gan: Generative adversarial net- works for efficient and high fidelity speech synthesis,
J. Kong, J. Kim, and J. Bae, “Hifi-gan: Generative adversarial net- works for efficient and high fidelity speech synthesis,”Advances in Neural Information Processing Systems, vol. 33, pp. 17 022– 17 033, 2020
2020
-
[17]
Style tokens: Un- supervised style modeling, control and transfer in end-to-end speech synthesis,
Y . Wang, D. Stanton, Y . Zhang, R.-S. Ryan, E. Battenberg, J. Shor, Y . Xiao, Y . Jia, F. Ren, and R. A. Saurous, “Style tokens: Un- supervised style modeling, control and transfer in end-to-end speech synthesis,” inInternational conference on machine learn- ing. PMLR, 2018, ...
2018
-
[18]
To- wards end-to-end prosody transfer for expressive speech synthesis with tacotron,
R. Skerry-Ryan, E. Battenberg, Y . Xiao, Y . Wang, D. Stan- ton, J. Shor, R. Weiss, R. Clark, and R. A. Saurous, “To- wards end-to-end prosody transfer for expressive speech synthesis with tacotron,” ininternational conference on machine learning. PMLR, 2018, pp. 4693–4702
2018
-
[19]
Hierarchical genera- tive modeling for controllable speech synthesis,
W.-N. Hsu, Y . Zhang, R. J. Weiss, H. Zen, Y . Wu, Y . Wang, Y . Cao, Y . Jia, Z. Chen, J. Shenet al., “Hierarchical genera- tive modeling for controllable speech synthesis,”arXiv preprint arXiv:1810.07217, 2018
2018 arXiv
-
[20]
Prosody under con- trol: Controlling prosody in text-to-speech synthesis by adjust- ments in latent reference space,
J. ˇSimko, T. T¨or¨o, M. Vainio, and A. Suni, “Prosody under con- trol: Controlling prosody in text-to-speech synthesis by adjust- ments in latent reference space,” inProceedings of the 20th Inter- national Congress of Phonetic Sciences, 2023, pp. 3086–3090
2023
-
[22]
Hierarchical prosody modeling and control in non-autoregressive parallel neural tts,
T. Raitio, J. Li, and S. Seshadri, “Hierarchical prosody modeling and control in non-autoregressive parallel neural tts,” inICASSP. IEEE, 2022, pp. 7587–7591
2022
-
[23]
Analysis of pronunciation learning in end-to-end speech synthesis
J. Taylor and K. Richmond, “Analysis of pronunciation learning in end-to-end speech synthesis.” inInterspeech, 2019
2019
-
[24]
Expressive prosody for unit- selection speech synthesis
V . Strom, R. A. Clark, and S. King, “Expressive prosody for unit- selection speech synthesis.” inInterspeech, 2006
2006
-
[25]
Speaking rate attention- based duration prediction for speed control tts,
J. Bandekar, S. Udupa, A. Singh, A. Jayakumar, S. Badiger, S. Kumar, P. VH, P. K. Ghoshet al., “Speaking rate attention- based duration prediction for speed control tts,”arXiv preprint arXiv:2310.08846, 2023
2023 arXiv
-
[26]
Speaking rate control of end-to-end tts models by direct manipulation of the encoder’s out- put embeddings,
M. Lenglet, O. Perrotin, and G. Bailly, “Speaking rate control of end-to-end tts models by direct manipulation of the encoder’s out- put embeddings,” inInterspeech, 2022
2022
-
[27]
Unified mandarin tts front-end based on distilled bert model,
Y . Zhang, L. Deng, and Y . Wang, “Unified mandarin tts front-end based on distilled bert model,”arXiv preprint arXiv:2012.15404, 2020
2012 arXiv
-
[28]
Speech audio corrector: using speech from non-target speakers for one- off correction of mispronunciations in grapheme-input text-to- speech,
J. Fong, D. Lyth, G. E. Henter, H. Tang, and S. King, “Speech audio corrector: using speech from non-target speakers for one- off correction of mispronunciations in grapheme-input text-to- speech,” inInterspeech, 2022
2022
-
[29]
Exact prosody cloning in zero- shot multispeaker text-to-speech,
F. Lux, J. Koch, and N. T. Vu, “Exact prosody cloning in zero- shot multispeaker text-to-speech,” in2022 IEEE Spoken Lan- guage Technology Workshop (SLT). IEEE, 2023, pp. 962–969
2023
-
[30]
Hubert: Self-supervised speech rep- resentation learning by masked prediction of hidden units,
W.-N. Hsu, B. Bolte, Y .-H. H. Tsai, K. Lakhotia, R. Salakhut- dinov, and A. Mohamed, “Hubert: Self-supervised speech rep- resentation learning by masked prediction of hidden units,” IEEE/ACM Transactions on Audio, Speech, and Language Pro- cessing, vol. 29, pp. 3451–3460, 2021
2021
-
[31]
Predicting within and across language phoneme recognition performance of self- supervised learning speech pre-trained models,
H. Ji, T. Patel, and O. Scharenborg, “Predicting within and across language phoneme recognition performance of self- supervised learning speech pre-trained models,”arXiv preprint arXiv:2206.12489, 2022
2022 arXiv
-
[32]
What do neural machine translation models learn about morphology?
Y . Belinkov, N. Durrani, F. Dalvi, H. Sajjad, and J. Glass, “What do neural machine translation models learn about morphology?” arXiv preprint arXiv:1704.03471, 2017
2017 arXiv
-
[33]
What is one grain of sand in the desert? analyzing individual neu- rons in deep nlp models,
F. Dalvi, N. Durrani, H. Sajjad, Y . Belinkov, A. Bau, and J. Glass, “What is one grain of sand in the desert? analyzing individual neu- rons in deep nlp models,” inProceedings of the AAAI Conference on Artificial Intelligence, vol. 33, no. 01, 2019, pp. 6309–6317
2019
-
[34]
Towards realistic individual recourse and actionable explana- tions in black-box decision making systems,
S. Joshi, O. Koyejo, W. Vijitbenjaronk, B. Kim, and J. Ghosh, “Towards realistic individual recourse and actionable explana- tions in black-box decision making systems,”arXiv preprint arXiv:1907.09615, 2019
1907 arXiv
-
[35]
Diffeomorphic counterfactuals with generative models,
A.-K. Dombrowski, J. E. Gerken, K.-R. M ¨uller, and P. Kessel, “Diffeomorphic counterfactuals with generative models,”IEEE Transactions on Pattern Analysis and Machine Intelligence, 2023
2023
-
[36]
beta-vae: Learning basic visual concepts with a constrained variational framework,
I. Higgins, L. Matthey, A. Pal, C. Burgess, X. Glorot, M. Botvinick, S. Mohamed, and A. Lerchner, “beta-vae: Learning basic visual concepts with a constrained variational framework,” inInternational conference on learning representations, 2016
2016
-
[37]
Neural discrete represen- tation learning,
A. Van Den Oord, O. Vinyalset al., “Neural discrete represen- tation learning,”Advances in neural information processing sys- tems, vol. 30, 2017
2017
-
[38]
The lj speech dataset,
K. Ito and L. Johnson, “The lj speech dataset,” https://keithito. com/LJ-Speech-Dataset/, 2017
2017
-
[39]
Large scale gan train- ing for high fidelity natural image synthesis,
A. Brock, J. Donahue, and K. Simonyan, “Large scale gan train- ing for high fidelity natural image synthesis,”arXiv preprint arXiv:1809.11096, 2018
2018 arXiv
-
[40]
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,” inInternational Conference on Machine Learning. PMLR, 2023, pp. 28 492–28 518
2023
-
[41]
Language models are unsupervised multitask learners,
A. Radford, J. Wu, R. Child, D. Luan, D. Amodei, I. Sutskever et al., “Language models are unsupervised multitask learners,” OpenAI blog, vol. 1, no. 8, p. 9, 2019
2019
-
[42]
Speech quality assessment,
P. C. Loizou, “Speech quality assessment,” inMultimedia analy- sis, processing and communications. Springer, 2011, pp. 623– 654
2011
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.