REVIEW 4 major objections 6 minor 47 references
DDSynth-RL: Audio Synthesizer Inversion via Discrete Diffusion with Reinforcement Learning
T0 review · 4 major / 6 minor · reviewed 2026-08-08 · deepseek-v4-flash
Pith's one-line read The paper tries to establish that synthesizer inversion is best treated as conditional generation over discrete parameter tokens, with masked discrete diffusion as the generator and a second stage of GRPO-style fine-tuning on…
desk verdict A promising combination of masked discrete diffusion and GRPO for synthesizer inversion, but the OOD generalization claim rests on an evaluation set that overlaps with fine-tuning validation. 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 object is a masked discrete diffusion model operating over a tokenized parameter sequence: 102 Dexed controls plus pitch, velocity, and duration are each mapped to a discrete vocabulary (quantized controls use 25 bins). Training masks random token subsets with a timestep-dependent probability and supervises only masked positions; inference starts from all-masked and fills one position per step, choosing the position with highest normalized-entropy confidence and the most likely token. A second mechanism is GRPO fine-tuning: candidate parameter sequences are decoded stochastically, rendered with the Dexed VST, scored by audio metrics (wMFCC, CLAP, CREPE, multi-scale spectrogram, spectral optimal transport, RMS envelope), and the policy is updated with group-normalized advantages.
What would settle it
Render a held-out set of audio from a different synthesizer or from real acoustic instruments, fine-tune the first-stage model with GRPO on those same held-out clips, and measure whether the audio-distance improvements persist on a separate third-party set; if the gains vanish or become negative, the OOD improvement is domain adaptation, not generalization.
Extended reading notes
Core claim
On Dexed, a 102-parameter FM synthesizer with MIDI tokens, the paper's discrete diffusion model after supervised training is competitive with a carefully ordered autoregressive Transformer and clearly outperforms flow matching on most metrics; on the out-of-domain NSynth set it leads on several MFCC-based distances. Fine-tuning with GRPO and multi-metric audio rewards cuts several out-of-domain audio distances substantially (wMFCC from 10.04 to 5.96, for example) and further reduces CLAP distance when optimized with CLAP and CREPE rewards. The paper concludes that modeling categorical synthesizer controls directly in token space, then optimizing rendered-audio rewards, is an effective recipe for non-differentiable synthesizer inversion.
Load-bearing premise
The out-of-domain evaluation uses NSynth validation and test audio, but the model is fine-tuned on NSynth training audio, so the reported out-of-domain gains may come from fitting the NSynth timbre distribution rather than from generalizable audio-matching ability.
Editorial extensions
If this is right
- Discrete diffusion avoids the need to hand-design a parameter generation order, which the paper shows matters: the autoregressive baseline degrades with random orders, while discrete diffusion is order-agnostic.
- Because the renderer is treated as a black box, the same two-stage recipe should transfer to other non-differentiable synthesizers without changing the model family.
- Optimizing audio-domain rewards directly can dramatically close out-of-domain gaps: on NSynth, multi-reward GRPO cuts wMFCC by roughly 40% relative to the first-stage model.
- The in-domain metrics degrade after GRPO because the policy moves away from the Dexed preset distribution toward NSynth-like timbres, showing a trade-off between matching the training preset distribution and matching arbitrary input audio.
- The paper's observation that slight overfitting can improve subjective quality suggests human-designed preset datasets carry an aesthetic prior worth preserving, not just a parameter-to-audio mapping.
Reading between the lines
- A stronger test of out-of-domain generalization would fine-tune on one synthesizer and evaluate on a genuinely different synthesizer's timbres, or on real instrument recordings; the current NSynth evaluation may reflect adaptation to the NSynth timbre distribution more than generalizable inversion skill.
- The one-position-at-a-time decoding with entropy confidence could be extended to a 'wait' policy that decides when to stop refining, which the paper does not explore but its own trajectory formalism would support.
- Because the reward is a weighted sum of audio metrics, a natural next direction is to replace hand-set weights with learned or preference-based rewards, e.g., from listener comparisons, which would connect to music-generation RL but is not tested here.
- The paper's claim that discrete diffusion is order-agnostic suggests it may scale better to high-dimensional synthesizers with many interacting controls, but this is untested beyond Dexed.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper presents DDSynth-RL, a two-stage framework for Dexed FM synthesizer inversion. In the first stage, synthesizer parameters and MIDI tokens are discretized and modeled with a masked discrete diffusion model, which is compared against an autoregressive Transformer and a continuous flow-matching baseline. In the second stage, the supervised discrete diffusion model is fine-tuned with a GRPO-style objective using rewards computed from audio rendered by the non-differentiable Dexed VST. The authors report that discrete diffusion is competitive with or better than the baselines after supervised training, and that GRPO fine-tuning improves out-of-domain audio matching metrics on the NSynth dataset. The abstract and conclusion both emphasize the OOD improvement as the central empirical contribution.
Significance. Synthesizer inversion is a relevant MIR problem, and the paper addresses a real limitation: parameter-space losses do not necessarily align with rendered-audio similarity. The discrete-diffusion formulation over categorical synthesizer controls is a reasonable and potentially useful alternative to autoregressive and continuous-flow approaches, and the paper includes code, demos, and an AR-order ablation that help reproducibility. A strength is that the renderer is treated as a black box throughout, matching practical constraints. However, the significance of the empirical claims is currently limited by evaluation-design issues: the 'OOD' set appears to be the same NSynth validation set used during GRPO fine-tuning, the reward function includes the evaluation metrics, and all headline numbers are point estimates without error bars. If the authors can provide a genuinely held-out timbre evaluation and uncertainty quantification, the contribution would be solid and of interest to the sound-matching community.
major comments (4)
- [Sections 4.1, 4.5, Table 1] The central claim that GRPO fine-tuning improves out-of-domain matching is not supported by the reported protocol. Section 4.1 states that NSynth train audio is used as target prompts for GRPO and that NSynth valid audio is used for validation. Section 4.5 then states that models are evaluated on the 'NSynth OOD validation set,' and Table 1 reports 'OOD NSynth' results. The evaluation split is therefore neither disjoint from the fine-tuning distribution nor unseen for checkpoint selection. The large OOD improvements after GRPO (e.g., wMFCC 10.04 to 5.96, MSS 4.41 to 3.11) could reflect optimization toward the reward on the in-distribution validation set rather than generalization to unseen timbres. Please report results on the untouched NSynth test split, or on a held-out timbre set that is disjoint from all training, validation, and checkpoint selection.
- [Equation (7), Section 4.5, Table 1] The GRPO reward is a weighted sum of exactly the same metrics used for evaluation in Table 1: wMFCC, CLAP, CREPE, MSS, SOT, and RMS. Fine-tuning with a linear combination of these metrics and then reporting improvements on those metrics measures reward optimization, not independent audio-quality improvement. The claim in Section 4.6 that GRPO 'demonstrates the effectiveness of audio-domain rewards' would be much stronger if at least one held-out metric not used in the reward were reported, or if a control with a similarly shaped but unrelated reward were included (e.g., a random-reward or single-reward ablation showing that the improvement is not simply reward overfitting).
- [Table 1] All results are point estimates averaged over 200 rendered examples, with no error bars, confidence intervals, or significance tests. Several claimed differences between DD and AR are small relative to what one would expect from sampling and rendering noise; for example, in-domain CLAP is 0.128 for AR versus 0.139 for DD, and OOD CLAP is 0.439 for AR versus 0.452 for DD. Without variance across seeds or a statistical test, the statements that DD is 'competitive' with AR, and that DD outperforms AR on OOD MFCC-related metrics, cannot be reliably assessed. Please report seed-level variance or bootstrap confidence intervals for the main comparisons.
- [Section 4.2, Table 1] The FM baseline is not comparable to AR and DD in a controlled way: AR and DD share a 2D CNN encoder plus Transformer decoder, whereas FM uses an AST-style encoder and ApproxEquivTransformer. The conclusion that flow matching is substantially worse because of continuous-relaxation mismatch is therefore confounded with architecture and encoder differences. Either a controlled FM implementation using the same audio encoder and decoder depth, or an explicit argument that the Hayes et al. configuration is the appropriate reference, is needed before attributing the performance gap to the generative formulation.
minor comments (6)
- [Section 4.1] The augmentation strategy is described as 'random perturbations to the synthesizer parameters,' but the specific perturbation ranges and which parameters are perturbed are not given. This matters because it determines the effective training distribution and the difficulty of the inversion task.
- [Figure 3] The AR-order ablation reports averages over four seeds, but the number of random orders and the per-seed spread are not reported. Please add error bars or per-seed curves so that the claim that the manual order 'consistently' converges faster is visible.
- [Equation (2), Section 3.2] The token weights w(i) are introduced as emphasizing parameters with stronger effects on rendered audio, but the paper never states how these weights are chosen. Please provide the values or the procedure used to set them.
- [Section 4.3] The evaluation metrics are listed but several important settings are missing: the number of MFCC coefficients and DTW alignment constraints for wMFCC, the window sizes and scales for MSS, and the regularization used for SOT. Please provide these details or cite the exact implementation.
- [Section 5] The observation that 'allowing the first-stage supervised model to overfit slightly does not necessarily produce the best objective audio metrics, but can lead to better subjective listening quality' is presented without a listening test or subjective evaluation. Please present evidence or mark it explicitly as an informal observation.
- [Section 6 and Table 1] The conclusion says GRPO fine-tuning 'further improves OOD audio matching metrics,' but Table 1 shows that the CLAP+CREPE phase worsens several metrics relative to the multi-reward phase (e.g., OOD wMFCC 5.96 to 7.28). The claim should be qualified to say that the chosen reward combination improves the metrics it optimizes.
Circularity Check
The OOD GRPO improvement claim is substantially the optimized reward itself: Eq. (7) rewards the same audio metrics reported in Table 1, and evaluation is performed on NSynth valid, the split used for validation during fine-tuning.
-
fitted input called prediction
[Section 3.4 (Eq. 7); Section 4.1; Section 4.5; Section 4.6 / Table 1]
"The distance terms D include wMFCC, CLAP embedding distance, CREPE embedding distance, multi-scale spectrogram distance, and spectral optimal transport distance, while RMS envelope cosine similarity is used as a similarity term: rk = −Σ_{j∈D} λj dj(âk,a) + λ_rms s_rms(âk,a). ... For GRPO fine-tuning, NSynth train audio serves as target prompts and NSynth valid audio is used for validation. ... GRPO fine-tuning further improves OOD audio matching metrics, demonstrating the effectiveness of audio-domain rewards for non-differentiable synthesizer inversion."
Eq. (7) is the objective being maximized by GRPO, and its distance terms dj are exactly the metrics reported in Table 1 for the OOD NSynth rows (wMFCC, MFCC13/MFCC40, MSS, SOT, RMS, CLAP; CREPE in the second RL phase). The policy is therefore fitted to increase the same numerical quantities that the paper then reports as evidence of improved OOD audio matching. The 'OOD' evaluation is on NSynth valid, which Section 4.1 states is used for validation during fine-tuning, so checkpoint selection also targets the reported split.
full rationale
The first-stage comparison — discrete diffusion versus autoregressive and flow-matching baselines — is a genuinely self-contained experimental contribution. The models are trained on the in-domain Dexed split and evaluated on held-out Dexed and NSynth splits under the same protocol; no circular reduction is present there. The AR order ablation is also an independent empirical finding. Self-citations in the paper (e.g., [28] for discrete diffusion in symbolic music) are background context and are not load-bearing for the central claim. The only significant circularity is the second-stage GRPO claim: the reward in Eq. (7) is a weighted sum of the same audio-distance metrics reported in Table 1, and the 'OOD' evaluation set overlaps with the NSynth validation split used during GRPO fine-tuning. Consequently, the reported improvement of DD-GRPO over Stage 1 on OOD metrics is partly guaranteed by the training objective, and the paper's strongest claim about out-of-domain generalization is not independently established. The absence of error bars over 200 examples compounds this, but that is a statistical-reporting concern rather than a circularity concern. Overall, the paper contains substantial independent content, but one central prediction reduces by construction to its own optimization target, giving a partial circularity score of 6.
Assumptions & free parameters
free parameters (4)
- Token loss weights w(i) =
not reported
- Reward weights λ_j and λ_rms =
not reported
- GRPO sampling hyperparameters (K, β, top-k, min-probability, epsilon) =
K=8, β=0.1; others not reported
- Local smoothing kernel width for target distributions =
not reported
assumptions (5)
- domain assumption Dexed is treated as a non-differentiable black-box renderer, so audio-domain supervision must go through rewards rather than gradients.
- ad hoc to paper Continuous controls can be discretized into 25 bins without losing the information needed for audio matching.
- domain assumption The audio metrics (wMFCC, CLAP, CREPE, MSS, SOT, RMS) measure perceptual audio similarity.
- domain assumption The masked discrete diffusion loss and entropy-based one-token-at-a-time decoding yield valid synthesizer parameter sequences.
- standard math GRPO with K=8 candidates and β=0.1 provides a stable policy gradient update for this black-box objective.
Cite this review
Pith. "Pith review of DDSynth-RL: Audio Synthesizer Inversion via Discrete Diffusion with Reinforcement Learning." pith.science (2026). https://pith.science/paper/JIS2CUTP
@misc{pith2026260803032,
author = {Pith},
title = {Pith review of: DDSynth-RL: Audio Synthesizer Inversion via Discrete Diffusion with Reinforcement Learning},
year = {2026},
howpublished = {\url{https://pith.science/paper/JIS2CUTP}},
note = {Machine review of arXiv:2608.03032}
}
read the original abstract
Synthesizer inversion is challenging for two main reasons: 1) Distinct parameter configurations can produce perceptually similar sounds. 2) Parameter-space losses often fail to reflect rendered audio similarity, while the synthesizer being a non-differentiable black box prevents simple audio-domain supervision. To address the one-to-many mapping induced by the first challenge, we formulate synthesizer inversion as conditional generation over discrete synthesizer parameters and use masked discrete diffusion as the generator. This treatment additionally avoids the fixed-order assumption of autoregressive models and the continuous-relaxation mismatch of flow matching when modeling categorical synthesizer controls. To address the second challenge, we further fine-tune the model with GRPO-style audio-domain rewards computed from rendered outputs. Experiments on Dexed show that, after supervised training, the discrete diffusion model is competitive with autoregressive and flow-matching baselines, and reward-based fine-tuning further improves out-of-domain audio matching performance. Code and demos are available at: https://github.com/DDSynth-RL/DDSynthRL.
Reference graph
Works this paper leans on
-
[1]
Distinct parameter configurations can produce perceptu- ally similar sounds. 2) Parameter-space losses often fail to reflect rendered audio similarity, while the synthesizer be- ing a non-differentiable black box prevents simple audio- domain supervision. To address the one-to-many mapping induced by the first challenge, we formulate synthesizer in- versi...
-
[2]
DDSynth-RL: Audio Synthesizer Inversion via Discrete Diffusion with Reinforcement Learning
INTRODUCTION Sound synthesizers underpin a wide range of creative prac- tices including music production, film and game sound de- sign, and new media art. Their controls are closely tied to human auditory perception and creative practices. In music AI research, symbolic music modeling has long been a central topic, but “symbolic” usually refers to notes a...
work page Pith review arXiv 2026
-
[3]
BACKGROUND 2.1 Synthesizer Inversion Synthesizer inversion, also known as parameter estima- tion or sound matching, was initially formulated as black- box optimization using genetic, evolutionary, or particle- swarm methods [8–11]. Such iterative search often strug- gles to scale to modern high-dimensional synthesizers and may not transfer readily across ...
-
[4]
METHOD We use a two-stage framework for Dexed synthesizer in- version. First, we formulate inversion as conditional gen- eration over discrete synthesizer and MIDI tokens, and train a masked discrete diffusion model with supervised token-level objectives. Second, we fine-tune the super- vised model with GRPO using rewards computed from rendered audio. 3.1...
-
[5]
EXPERIMENTS 4.1 Datasets We divide the experimental data into in-domain and out-of- domain (OOD) subsets. For the in-domain data, we use the Dexed parameter-audio dataset curated by Le Vaillant and Dutoit for SPINV AE-2 [36], and follow their augmenta- tion strategy by applying random perturbations to the syn- thesizer parameters and rendering each preset...
-
[6]
DISCUSSION Although the autoregressive model can achieve perfor- mance close to discrete diffusion on the relatively fixed Dexed synthesizer setting, our ablation experiments show that its performance is highly sensitive to the generation order of parameter tokens. This heuristic design may not transfer reliably to more complex synthesizers, where the num...
-
[7]
CONCLUSION In this paper, we study discrete diffusion modeling for au- dio synthesizer inversion and introduce GRPO fine-tuning with audio-domain rewards from a black-box synthesizer renderer. Experimental results show that discrete diffusion substantially outperforms Flow Matching while avoiding the need to predefine a parameter generation order. It also...
-
[8]
AI USAGE STA TEMENT ChatGPT was used to assist with implementing the training code and writing and revising this paper
Show all 47 references
-
[9]
ACKNOWLEDGEMENTS I thank Ziyuan Zhao and Lejun Min for insightful technical discussions, Liwei Lin for assistance with the paper’s fig- ures, and my advisor, Mark Nicholas Grimshaw-Aagaard, for his continued support and intellectual guidance
-
[10]
A unified model for zero-shot music source separation, transcrip- tion and synthesis,
L. Lin, G. Xia, Q. Kong, and J. Jiang, “A unified model for zero-shot music source separation, transcrip- tion and synthesis,” inProceedings of the 22nd Inter- national Society for Music Information Retrieval Con- ference, 2021, pp. 381–388
2021
-
[11]
MT3: Multi-task multitrack music transcrip- tion,
J. P. Gardner, I. Simon, E. Manilow, C. Hawthorne, and J. Engel, “MT3: Multi-task multitrack music transcrip- tion,” inInternational Conference on Learning Repre- sentations, 2022
2022
-
[12]
ChatMusi- cian: Understanding and generating music intrinsically with LLM,
R. Yuan, H. Lin, Y . Wang, Z. Tian, S. Wu, T. Shen, G. Zhang, Y . Wu, C. Liu, Z. Zhouet al., “ChatMusi- cian: Understanding and generating music intrinsically with LLM,” inFindings of the Association for Compu- tational Linguistics: ACL 2024, 2024, pp. 6252–6271
2024
-
[13]
NotaGen: Advanc- ing musicality in symbolic music generation with large language model training paradigms,
Y . Wang, S. Wu, J. Hu, X. Du, Y . Peng, Y . Huang, S. Fan, X. Li, F. Yu, and M. Sun, “NotaGen: Advanc- ing musicality in symbolic music generation with large language model training paradigms,” inProceedings of the Thirty-Fourth International Joint Conference on Artificial In...
2025
-
[14]
MuseCoco: Generating symbolic music from text,
P. Lu, X. Xu, C. Kang, B. Yu, C. Xing, X. Tan, and J. Bian, “MuseCoco: Generating symbolic music from text,”arXiv preprint arXiv:2306.00110, 2023
2023 arXiv
-
[15]
Spectral learning for expressive interactive ensemble music performance,
G. Xia, Y . Wang, R. B. Dannenberg, and G. J. Gordon, “Spectral learning for expressive interactive ensemble music performance,” inProceedings of the 16th Inter- national Society for Music Information Retrieval Con- ference, 2015, pp. 816–822
2015
-
[16]
Adaptive accompaniment with ReaL- chords,
Y . Wu, T. Cooijmans, K. Kastner, A. Roberts, I. Simon, A. Scarlatos, C. Donahue, C. Tarakajian, S. Omid- shafiei, A. Courville, P. S. Castro, N. Jaques, and C.- Z. A. Huang, “Adaptive accompaniment with ReaL- chords,” inProceedings of the 41st International Con- ference on Ma...
2024
-
[17]
Machine tongues XVI: Genetic algorithms and their application to FM matching synthesis,
A. Horner, J. Beauchamp, and L. Haken, “Machine tongues XVI: Genetic algorithms and their application to FM matching synthesis,”Computer Music Journal, vol. 17, no. 4, pp. 17–29, 1993
1993
-
[18]
Growing sound synthesizers using evo- lutionary methods,
R. A. Garcia, “Growing sound synthesizers using evo- lutionary methods,” inProceedings of ALMMA 2001: Artificial Life Models for Musical Applications Work- shop (ECAL 2001), 2001, pp. 99–107
2001
-
[19]
Frequency modulation tone matching using a fuzzy clustering evolution strat- egy,
T. Mitchell and C. Sullivan, “Frequency modulation tone matching using a fuzzy clustering evolution strat- egy,” inAudio Engineering Society Convention 118, 2005
2005
-
[20]
Automatic cloning of recorded sounds by software synthesizers,
S. Heise, M. Hlatky, and J. Loviscach, “Automatic cloning of recorded sounds by software synthesizers,” inAudio Engineering Society Convention 127, 2009
2009
-
[21]
Flow synthesizer: Univer- sal audio synthesizer control with normalizing flows,
P. Esling, N. Masuda, A. Bardet, R. Despres, and A. Chemla-Romeu-Santos, “Flow synthesizer: Univer- sal audio synthesizer control with normalizing flows,” Applied Sciences, vol. 10, no. 1, p. 302, 2019
2019
-
[22]
Improv- ing synthesizer programming from variational autoen- coders latent space,
G. Le Vaillant, T. Dutoit, and S. Dekeyser, “Improv- ing synthesizer programming from variational autoen- coders latent space,” inProceedings of the 24th Inter- national Conference on Digital Audio Effects. IEEE, 2021, pp. 276–283
2021
-
[23]
Sound2Synth: Interpreting sound via FM synthesizer parameters estimation,
Z. Chen, Y . Jing, S. Yuan, Y . Xu, J. Wu, and H. Zhao, “Sound2Synth: Interpreting sound via FM synthesizer parameters estimation,” inProceedings of the Thirty- First International Joint Conference on Artificial Intel- ligence, 2022, pp. 4921–4928
2022
-
[24]
Audio synthe- sizer inversion in symmetric parameter spaces with ap- proximately equivariant flow matching,
B. Hayes, C. Saitis, and G. Fazekas, “Audio synthe- sizer inversion in symmetric parameter spaces with ap- proximately equivariant flow matching,” inProceed- ings of the 26th International Society for Music Infor- mation Retrieval Conference, Daejeon, South Korea, 2025, pp. 373–381
2025
-
[25]
Improving semi-supervised differentiable synthesizer sound matching for practi- cal applications,
N. Masuda and D. Saito, “Improving semi-supervised differentiable synthesizer sound matching for practi- cal applications,”IEEE/ACM Transactions on Audio, Speech, and Language Processing, vol. 31, pp. 863– 875, 2023
2023
-
[26]
DiffMoog: A differentiable modular synthesizer for sound match- ing,
N. Uzrad, O. Barkan, A. Elharar, S. Shvartzman, M. Laufer, L. Wolf, and N. Koenigstein, “DiffMoog: A differentiable modular synthesizer for sound match- ing,”arXiv preprint arXiv:2401.12570, 2024
2024 arXiv
-
[27]
White box search over audio synthesizer parameters,
Y . Yang, Z. Jin, C. Barnes, and A. Finkelstein, “White box search over audio synthesizer parameters,” inPro- ceedings of the 24th International Society for Music Information Retrieval Conference, 2023, pp. 190–196
2023
-
[28]
SynthRL: Cross-domain syn- thesizer sound matching via reinforcement learning,
W. Shin and K. Lee, “SynthRL: Cross-domain syn- thesizer sound matching via reinforcement learning,” inProceedings of the Thirty-Fourth International Joint Conference on Artificial Intelligence, 2025, pp. 10 162–10 170
2025
-
[29]
DDSP: Differentiable digital signal processing,
J. Engel, L. Hantrakul, C. Gu, and A. Roberts, “DDSP: Differentiable digital signal processing,” inInterna- tional Conference on Learning Representations, 2020
2020
-
[30]
Learning to solve inverse problems for perceptual sound match- ing,
H. Han, V . Lostanlen, and M. Lagrange, “Learning to solve inverse problems for perceptual sound match- ing,”IEEE/ACM Transactions on Audio, Speech, and Language Processing, vol. 32, pp. 2605–2615, 2024
2024
-
[31]
Mask-predict: Parallel decoding of condi- tional masked language models,
M. Ghazvininejad, O. Levy, Y . Liu, and L. Zettle- moyer, “Mask-predict: Parallel decoding of condi- tional masked language models,” inProceedings of the 2019 Conference on Empirical Methods in Nat- ural Language Processing and the 9th International Joint Conference on Natural...
2019
-
[32]
BERT has a mouth, and it must speak: BERT as a Markov random field language model,
A. Wang and K. Cho, “BERT has a mouth, and it must speak: BERT as a Markov random field language model,” inProceedings of the Workshop on Methods for Optimizing and Evaluating Neural Language Gen- eration, 2019, pp. 30–36
2019
-
[33]
Large language diffusion models,
S. Nie, F. Zhu, Z. You, X. Zhang, J. Ou, J. Hu, J. Zhou, Y . Lin, J.-R. Wen, and C. Li, “Large language diffusion models,”arXiv preprint arXiv:2502.09992, 2025
2025 arXiv
-
[34]
Structured denoising diffusion mod- els in discrete state-spaces,
J. Austin, D. D. Johnson, J. Ho, D. Tarlow, and R. van den Berg, “Structured denoising diffusion mod- els in discrete state-spaces,” inAdvances in Neural Information Processing Systems, vol. 34, 2021, pp. 17 981–17 993
2021
-
[35]
DiffusionBERT: Improving generative masked language models with diffusion models,
Z. He, T. Sun, Q. Tang, K. Wang, X.-J. Huang, and X. Qiu, “DiffusionBERT: Improving generative masked language models with diffusion models,” in Proceedings of the 61st Annual Meeting of the Associ- ation for Computational Linguistics (Volume 1: Long Papers), 2023, pp. 4521–4534
2023
-
[36]
Adaptive path of predic- tion: An unsupervised method for modeling note-level informational hierarchy of polyphony,
X. Wang and M. Rohrmeier, “Adaptive path of predic- tion: An unsupervised method for modeling note-level informational hierarchy of polyphony,” inProceedings of the 26th International Society for Music Information Retrieval Conference, 2025, pp. 565–572
2025
-
[37]
ViTex: Visual texture control for multi-track symbolic music gen- eration via discrete diffusion models,
X. Yi, Q. He, G. Xia, and Z. Wang, “ViTex: Visual texture control for multi-track symbolic music gen- eration via discrete diffusion models,”arXiv preprint arXiv:2603.01984, 2026
2026
-
[38]
Discrete diffusion probabilistic models for symbolic music generation,
M. Plasser, S. Peter, and G. Widmer, “Discrete diffusion probabilistic models for symbolic music generation,” inProceedings of the Thirty-Second International Joint Conference on Artificial Intelli- gence, 2023, pp. 5842–5850. [Online]. Available: https://www.ijcai.org/proceed...
2023
-
[39]
DPLM-2: A multimodal diffusion protein lan- guage model,
X. Wang, Z. Zheng, F. Ye, D. Xue, S. Huang, and Q. Gu, “DPLM-2: A multimodal diffusion protein lan- guage model,” inInternational Conference on Learn- ing Representations, 2025
2025
-
[40]
Protein design with guided discrete diffusion,
N. Gruver, S. Stanton, N. Frey, T. G. Rudner, I. Hotzel, J. Lafrance-Vanasse, A. Rajpal, K. Cho, and A. G. Wil- son, “Protein design with guided discrete diffusion,” vol. 36, pp. 12 489–12 517, 2023
2023
-
[41]
DeepSeek- Math: Pushing the limits of mathematical rea- soning in open language models,
Z. Shao, P. Wang, Q. Zhu, R. Xu, J. Song, X. Bi, H. Zhang, M. Zhang, Y . Li, Y . Wuet al., “DeepSeek- Math: Pushing the limits of mathematical rea- soning in open language models,”arXiv preprint arXiv:2402.03300, 2024
2024 arXiv
-
[42]
MusicRL: Aligning music generation to human preferences,
G. Cideron, S. Girgin, M. Verzetti, D. Vincent, M. Kastelic, Z. Borsos, B. McWilliams, V . Ungure- anu, O. Bachem, O. Pietquin, M. Geist, L. Hussenot, N. Zeghidour, and A. Agostinelli, “MusicRL: Aligning music generation to human preferences,” inProceed- ings of the 41st Inter...
2024
-
[43]
d1: Scal- ing reasoning in diffusion large language models via reinforcement learning,
S. Zhao, D. Gupta, Q. Zheng, and A. Grover, “d1: Scal- ing reasoning in diffusion large language models via reinforcement learning,” inAdvances in Neural Infor- mation Processing Systems, vol. 38, 2025, pp. 56 729– 56 762
2025
-
[44]
Improv- ing discrete diffusion unmasking policies beyond ex- plicit reference policies,
C. Hong, S. An, M.-S. Kim, and J. C. Ye, “Improv- ing discrete diffusion unmasking policies beyond ex- plicit reference policies,” inInternational Conference on Learning Representations, 2026
2026
-
[45]
Latent space interpola- tion of synthesizer parameters using timbre-regularized auto-encoders,
G. Le Vaillant and T. Dutoit, “Latent space interpola- tion of synthesizer parameters using timbre-regularized auto-encoders,”IEEE/ACM Transactions on Audio, Speech, and Language Processing, vol. 32, pp. 3379– 3392, 2024
2024
-
[46]
Assessing the align- ment of audio representations with timbre similarity ratings,
H. Tian, S. Lattner, and C. Saitis, “Assessing the align- ment of audio representations with timbre similarity ratings,” inProceedings of the 26th International Soci- ety for Music Information Retrieval Conference, 2025, pp. 710–718
2025
-
[47]
DawDreamer: Bridging the gap between digital audio workstations and python interfaces,
D. Braun, “DawDreamer: Bridging the gap between digital audio workstations and python interfaces,” arXiv preprint arXiv:2111.09931, 2021
2021 arXiv
Reviewed August 8, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.