REVIEW 2 major objections 5 minor 2 cited by
Large Language Models to Diffusion Finetuning
T0 review · 2 major / 5 minor · reviewed 2026-08-10 · deepseek-v4-flash
Pith's one-line read Finetuning with L2D makes LLM accuracy rise monotonically with diffusion steps.
desk verdict Genuinely novel method, well-engineered, but math benchmark contamination undermines the test-time scaling headline; worth refereeing with mandatory contamination checks. 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 parallel diffusion path $f_{\theta_d}$, a compact transformer initialized from the frozen LM's own layers and optimized with LoRA, which consumes a noised token embedding $x_t$ and outputs vocabulary logits. A timestep-conditioned gate $w_d(t) = w_{\theta_d}(t) - w_{\theta_d}(0)$ forces the path to vanish at $t=0$, which is the mechanism that preserves the original single-step output. The path is trained with a cross-entropy loss rather than mean-squared error, tying the diffusion objective directly to next-token prediction, and inference follows the constant-velocity ODE $dx_t = (\hat{x} - x_t)/(1-t)\, dt$, which turns iterative token sampling into a continuous denoising trajectory.
What would settle it
Retrain L2D on the same corpus with metamathqa-50k and numina-cot-100k removed, then measure GSM8K and MATH accuracy as a function of diffusion steps; if the accuracy-versus-steps curve flattens or the large gains disappear, the monotone-scaling claim rests on train/evaluation overlap.
Extended reading notes
Core claim
L2D recasts next-token prediction as the single-step case of a continuous diffusion process over token embeddings. During training, the base LM is frozen and a small parallel diffusion path $f_{\theta_d}$ is trained with cross-entropy to predict the target token from the interpolated embedding $x_t = t x_1 + (1-t) x_0$ across all timesteps $t$. During inference, the model starts from pure noise $x_0 \sim \mathcal{N}(0, \sigma^2 I)$, repeatedly samples a token embedding $\hat{x}$ from its logits, and integrates the rectified-flow ODE $dx_t = (\hat{x} - x_t)/(1-t)\, dt$. The paper's claim is that this procedure yields monotonically increasing accuracy with more steps, that one step equals the original model, and that the added parameters are a small fraction of the base LM's size.
Load-bearing premise
The central claim that accuracy rises monotonically with diffusion steps rests on the benchmark gains being genuine, but the training corpus contains metamathqa-50k and numina-cot-100k, datasets derived from the same families as GSM8K and MATH, so the reported math improvements may be partly memorization.
Editorial extensions
If this is right
- A user can trade compute for accuracy on demand: more diffusion steps yield monotonically higher scores up to the tested budgets, with over 90% of the gain available at the default 15-step budget.
- Because the original weights are never modified, L2D can be applied on top of instruction-tuned, LoRA-tuned, or fully finetuned checkpoints, and it recovers coding performance that full finetuning degrades.
- Classifier-free guidance makes one L2D model switchable between general and task-specialist modes by adjusting the guidance strength $w_g$.
- Adaptive ODE solvers let the model spend compute per token; knowledge-heavy tasks like MMLU and MMLU-Pro trigger more steps than arithmetic word problems, reducing reliance on hand-written chain-of-thought prompts.
- Because the objective is cross-entropy, the method is claimed to apply to any foundation model pretrained with that loss, not only the four models tested.
Reading between the lines
- Editorial: the training corpus includes metamathqa-50k and numina-cot-100k, which are built from the same problem families as GSM8K and MATH, so the headline math improvements are likely upper bounds until re-measured on problem sets that provably do not overlap with training.
- Editorial: if the monotone scaling curve is real, the per-token step counts emitted by the adaptive solver could be reused as a difficulty signal for sampling or reward shaping, a direction the paper only gestures at in future work.
- Editorial: monotonicity is reported on a single 1B model up to 127 steps; whether the curve continues, flattens, or later bends downward at much larger budgets remains an open empirical question.
- Editorial: since the diffusion path is initialized from the LM's own blocks, the approach may carry over to non-transformer architectures that still provide token embeddings and cross-entropy logits, though the paper does not test this.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes L2D, a method that appends a parallel diffusion path—trained with a cross-entropy loss on noisy token embeddings—to a frozen pre-trained LLM, enabling iterative denoising at inference time. The authors report performance gains across math, coding, and general-knowledge tasks on Llama 3.2 1B, Qwen 2.5 1.5B/7B, and Llama 3.1 8B, and claim monotonic accuracy improvements with more diffusion steps, preserved single-step capabilities, and compatibility with classifier-free guidance and adaptive ODE solvers.
Significance. If the reported results are robust, L2D is a novel and parameter-efficient way to endow autoregressive LLMs with test-time compute scaling while leaving the base model's one-step behavior unchanged. The paper's strengths include a clean architectural design that reuses the frozen LM path, thorough ablations (learning rate, sigma, initialization, velocity computation, solvers, schedules), and publicly available code. However, the empirical validation is currently compromised by overlap between the training corpus and the math evaluation benchmarks, and by an overstated monotonicity claim. The central test-time-scaling thesis is therefore not yet convincingly established.
major comments (2)
- [Appendix B.1, Table 1] The training corpus includes metamathqa-50k, which is constructed by rewriting GSM8K and MATH problems, and numina-cot-100k, which overlaps with competition math problems; these are the same benchmarks used for evaluation (GSM8K and MATH in Table 1). The paper reports no overlap analysis, n-gram deduplication, or evaluation on an uncontaminated math benchmark. As a result, the large math improvements (e.g., Llama 3.2 1B GSM8K 13.86→38.86; Qwen 2.5 7B GSM8K 5.61→82.80) may be substantially inflated by memorization of test-derived data, and the central claim that L2D provides general test-time compute scaling is not established on the tasks where it looks strongest. The authors should either remove all test-derived data from training, measure and report overlap rates, or add results on a held-out math benchmark (e.g., AIME 2024 or a freshly collected set) with the same evaluation protocol.
- [Abstract, Table 18] The abstract claims that 'by increasing the number of diffusion steps, we show our finetuned models achieve monotonically increasing accuracy,' but Table 18 shows per-task decreases on general-knowledge tasks: MMLU drops from 41.99 at 15 steps to 41.87 at 127 steps, and MMLU-Pro drops from 15.35 to 14.96. Monotonicity holds only for the aggregate average or for certain task subsets. The claim should be qualified (e.g., 'on average' or 'on the math and coding tasks') and the per-task behavior should be discussed, since the unqualified statement is contradicted by the authors' own full results.
minor comments (5)
- [Eq. (7)] The classifier-free guidance formula uses (1 - w_g) rather than the standard (w_g - 1) term. With w_g > 1, the expression as written mixes toward the unconditional prediction instead of pushing away from it. Please verify the sign and ensure the equation matches the implementation.
- [Table 14] The parameter count for Llama 3.2 1B full finetuning is listed as 7615M, which appears to be a copy-paste error from the 8B model; it should be 1235M.
- [Figure 1] Figure 1 reports the aggregate scaling curve but no per-task breakdown or variance across seeds; adding per-task curves or a small table would help readers assess the monotonicity claim.
- [Table 17] The column header 'Paramseters' contains a typo; it should read 'Parameters'.
- [Section 4.3, Table 18] The 'tuned w_g' results appear to select the guidance strength based on test-set performance. Please clarify whether a validation split was used and report the selected w_g values per task category.
Circularity Check
No significant circularity: L2D's scaling behavior is empirical, and the single-step preservation property is an explicit construction, not a disguised prediction.
full rationale
The paper's central claims are empirical: L2D trains a LoRA diffusion path with a cross-entropy loss (Eq. 3) and measures accuracy at increasing diffusion-step budgets on evaluation benchmarks; the monotone scaling shown in Figure 1 is a reported measurement, not a quantity forced by a fitted parameter or by the loss definition. The parametrization wd(t) = wθd(t) - wθd(0) (Eq. 6) does make the t = 0 output equal to the frozen base LM by construction, but the paper explicitly presents this as an intended design property ('this practice ensures that L2D will never trade off the powerful single-step capabilities of the pre-trained LM'), not as an empirically derived prediction, so it is a transparent construction rather than circular reasoning. The training-data overlap concern involving metamathqa-50k and numina-cot-100k (Appendix B.1) is a validity threat to the evaluation and to the test-time-scaling claim, but it is not a derivation step that reduces to its own inputs. The reference list contains no self-citations by the present authors, and no 'uniqueness theorem' or load-bearing prior result is imported from the authors' own earlier work to force the method's choices. Therefore, the derivation chain is self-contained with respect to circularity.
Assumptions & free parameters
free parameters (3)
- sigma (base distribution noise scale) =
64
- d-bar (diffusion embedding dimension) =
256
- wg (classifier-free guidance strength) =
Tuned per domain (e.g., 3 for math, 1.5 for coding)
assumptions (6)
- standard math The Gaussian corruption process and the rectified-flow ODE define a valid generative process for token embeddings.
- domain assumption Cross-entropy loss on normalized token embeddings is a valid training objective for continuous diffusion over categorical data.
- domain assumption Unit-norm rescaling of vocabulary embeddings in Eq. 5 keeps the diffusion process well-conditioned.
- domain assumption Evaluation benchmarks GSM8K and MATH are not substantially memorized from the L2D training corpus.
- domain assumption Zero-initialized output weighting wd(0) = 0 preserves the original LM's single-step behavior while allowing the diffusion path to take over for t > 0.
- domain assumption Sampling an individual token embedding, rather than taking the expectation over the vocabulary, yields a valid stochastic ODE velocity with beneficial self-correction.
Cite this review
Pith. "Pith review of Large Language Models to Diffusion Finetuning." pith.science (2026). https://pith.science/paper/IXWHSV5R
@misc{pith2026250115781,
author = {Pith},
title = {Pith review of: Large Language Models to Diffusion Finetuning},
year = {2026},
howpublished = {\url{https://pith.science/paper/IXWHSV5R}},
note = {Machine review of arXiv:2501.15781}
}
read the original abstract
We propose a new finetuning method to provide pre-trained large language models (LMs) the ability to scale test-time compute through the diffusion framework. By increasing the number of diffusion steps, we show our finetuned models achieve monotonically increasing accuracy, directly translating to improved performance across downstream tasks. Furthermore, our finetuned models can expertly answer questions on specific topics by integrating powerful guidance techniques, and autonomously determine the compute required for a given problem by leveraging adaptive ODE solvers. Our method is universally applicable to any foundation model pre-trained with a cross-entropy loss and does not modify any of its original weights, fully preserving its strong single-step generation capabilities. We show our method is more effective and fully compatible with traditional finetuning approaches, introducing an orthogonal new direction to unify the strengths of the autoregressive and diffusion frameworks.
Figures
Forward citations
Cited by 2 Pith papers
-
CANDI: Hybrid Discrete-Continuous Diffusion Models
CANDI combines masked and Gaussian corruption in one noising process, letting discrete diffusion models use continuous gradients for joint updates and guidance.
-
A Survey on Latent Reasoning
A survey that organizes latent reasoning methods into vertical recurrence, horizontal recurrence, and infinite-depth diffusion, arguing that silent reasoning can beat explicit chain-of-thought.
Reference graph
Works this paper leans on
-
[1]
L., Almeida, D., Altenschmidt, J., Altman, S., Anadkat, S., et al
Achiam, J., Adler, S., Agarwal, S., Ahmad, L., Akkaya, I., Aleman, F. L., Almeida, D., Altenschmidt, J., Altman, S., Anadkat, S., et al. Gpt-4 technical report. arXiv preprint arXiv:2303.08774,
-
[3]
Implementation hyper-parameters of the weight finetuning baselines and L2D. Hyper-parameter Weight finetuning L2D Flow hidden dimensionality ¯d – 256 Timestep embedding dimensionality – 256 Diffusion path conditioning hidden dimensionality – 256 Noise scaling ratio σ – 64 Optimizer AdamW AdamW Warmup steps 100 100 Maximum learning rate 1 × 10−5 1 × 10−4 F...
-
[4]
Overview of evaluation datasets for the considered tasks and their characteristics. Dataset (subset) Huggingface Repository Split Few-shot split Size InstructHumanEval codeparrot/instructhumaneval test test 159 MBPP (full) google-research-datasets/mbpp test prompt 499 GSM8K (main) openai/gsm8k test train 1,319 MATH lighteval/MATH test train 4,347 MMLU (al...
work page 2022
-
[5]
Campbell, A., Yim, J., Barzilay, R., Rainforth, T., and Jaakkola, T. Generative flows on discrete state-spaces: Enabling multimodal flows with applications to protein co-design. arXiv preprint arXiv:2402.04997,
-
[6]
Chen, M., Tworek, J., Jun, H., Yuan, Q., Pinto, H. P. D. O., Kaplan, J., Edwards, H., Burda, Y ., Joseph, N., Brockman, G., et al. Evaluating large language models trained on code. arXiv preprint arXiv:2107.03374,
-
[9]
Training verifiers to solve math word problems
Cobbe, K., Kosaraju, V ., Bavarian, M., Chen, M., Jun, H., Kaiser, L., Plappert, M., Tworek, J., Hilton, J., Nakano, R., Hesse, C., and Schulman, J. Training verifiers to solve math word problems. arXiv preprint arXiv:2110.14168,
-
[11]
H., Doucet, A., Strudel, R., Dyer, C., Durkan, C., et al
Dieleman, S., Sartran, L., Roshannai, A., Savinov, N., Ganin, Y ., Richemond, P. H., Doucet, A., Strudel, R., Dyer, C., Durkan, C., et al. Continuous diffusion for categorical data. arXiv preprint arXiv:2211.15089,
-
[12]
Dubey, A., Jauhri, A., Pandey, A., Kadian, A., Al-Dahle, A., Letman, A., Mathur, A., Schelten, A., Yang, A., Fan, A., et al. The llama 3 herd of models. arXiv preprint arXiv:2407.21783,
Show all 57 references
-
[14]
Gat, I., Remez, T., Shaul, N., Kreuk, F., Chen, R
URL https: //openreview.net/forum?id=hQwb-lbM6EL. Gat, I., Remez, T., Shaul, N., Kreuk, F., Chen, R. T., Syn- naeve, G., Adi, Y ., and Lipman, Y . Discrete flow match- ing. arXiv preprint arXiv:2407.15595,
-
[15]
Deepseek-r1: In- centivizing reasoning capability in llms via reinforcement learning
Guo, D., Yang, D., Zhang, H., Song, J., Zhang, R., Xu, R., Zhu, Q., Ma, S., Wang, P., Bi, X., et al. Deepseek-r1: In- centivizing reasoning capability in llms via reinforcement learning. arXiv preprint arXiv:2501.12948,
-
[17]
David helps goliath: Inference-time collaboration be- tween small specialized and large general diffusion lms
Han, X., Kumar, S., Tsvetkov, Y ., and Ghazvininejad, M. David helps goliath: Inference-time collaboration be- tween small specialized and large general diffusion lms. arXiv preprint arXiv:2305.14771,
-
[18]
Diffu- sionbert: Improving generative masked language models with diffusion models
He, Z., Sun, T., Wang, K., Huang, X., and Qiu, X. Diffu- sionbert: Improving generative masked language models with diffusion models. arXiv preprint arXiv:2211.15029,
-
[20]
J., Shen, Y ., Wallis, P., Allen-Zhu, Z., Li, Y ., Wang, S., Wang, L., and Chen, W
Hu, E. J., Shen, Y ., Wallis, P., Allen-Zhu, Z., Li, Y ., Wang, S., Wang, L., and Chen, W. Lora: Low-rank adaptation of large language models. arXiv preprint arXiv:2106.09685,
-
[21]
Hui, B., Yang, J., Cui, Z., Yang, J., Liu, D., Zhang, L., Liu, T., Zhang, J., Yu, B., Lu, K., et al. Qwen2. 5-coder technical report. arXiv preprint arXiv:2409.12186,
-
[22]
Openai o1 system card
Jaech, A., Kalai, A., Lerer, A., Richardson, A., El-Kishky, A., Low, A., Helyar, A., Madry, A., Beutel, A., Car- ney, A., et al. Openai o1 system card. arXiv preprint arXiv:2412.16720,
-
[23]
D., Singh, A., Baumli, K., Iqbal, S., Bishop, C., Roelofs, R., et al
Kumar, A., Zhuang, V ., Agarwal, R., Su, Y ., Co-Reyes, J. D., Singh, A., Baumli, K., Iqbal, S., Bishop, C., Roelofs, R., et al. Training language models to self-correct via reinforcement learning. arXiv preprint arXiv:2409.12917,
-
[24]
Improving the training of rectified flows
Lee, S., Lin, Z., and Fanti, G. Improving the training of rectified flows. arXiv preprint arXiv:2405.20320,
-
[25]
T., Lopez-Paz, D., Ben-Hamu, H., and Gat, I
Lipman, Y ., Havasi, M., Holderrieth, P., Shaul, N., Le, M., Karrer, B., Chen, R. T., Lopez-Paz, D., Ben-Hamu, H., and Gat, I. Flow matching guide and code. arXiv preprint arXiv:2412.06264,
-
[26]
Don’t throw away your value model! generating more preferable text with value- guided monte-carlo tree search decoding
Liu, J., Cohen, A., Pasunuru, R., Choi, Y ., Hajishirzi, H., and Celikyilmaz, A. Don’t throw away your value model! generating more preferable text with value- guided monte-carlo tree search decoding. arXiv preprint arXiv:2309.15028,
-
[27]
Flow straight and fast: Learning to generate and transfer data with rectified flow
Liu, X., Gong, C., and Liu, Q. Flow straight and fast: Learning to generate and transfer data with rectified flow. arXiv preprint arXiv:2209.03003,
-
[28]
Decoupled weight decay regularization.arXiv preprint arXiv:1711.05101,
Loshchilov, I. Decoupled weight decay regularization.arXiv preprint arXiv:1711.05101,
-
[29]
Discrete diffusion model- ing by estimating the ratios of the data distribution
Lou, A., Meng, C., and Ermon, S. Discrete diffusion model- ing by estimating the ratios of the data distribution. arXiv preprint arXiv:2310.16834,
-
[30]
Lovelace, J., Kishore, V ., Chen, Y ., and Weinberger, K. Q. Diffusion guided language modeling. arXiv preprint arXiv:2408.04220,
-
[31]
K., Ivison, H., Tae, J., Henderson, J., Belt- agy, I., Peters, M
Mahabadi, R. K., Ivison, H., Tae, J., Henderson, J., Belt- agy, I., Peters, M. E., and Cohan, A. Tess: Text-to- text self-conditioned simplex diffusion. arXiv preprint arXiv:2305.08379,
-
[32]
L., Fei-Fei, L., Hajishirzi, H., Zettlemoyer, L., Liang, P., Cand `es, E., and Hashimoto, T
Muennighoff, N., Yang, Z., Shi, W., Li, X. L., Fei-Fei, L., Hajishirzi, H., Zettlemoyer, L., Liang, P., Cand `es, E., and Hashimoto, T. s1: Simple test-time scaling. arXiv preprint arXiv:2501.19393,
-
[33]
Step- by-step diffusion: An elementary tutorial
Nakkiran, P., Bradley, A., Zhou, H., and Advani, M. Step- by-step diffusion: An elementary tutorial. arXiv preprint arXiv:2406.08929,
-
[35]
S., Arriola, M., Schiff, Y ., Gokaslan, A., Marro- quin, E., Chiu, J
Sahoo, S. S., Arriola, M., Schiff, Y ., Gokaslan, A., Marro- quin, E., Chiu, J. T., Rush, A., and Kuleshov, V . Simple and effective masked diffusion language models. arXiv preprint arXiv:2406.07524,
-
[37]
Scaling llm test- time compute optimally can be more effective than scal- ing model parameters
Snell, C., Lee, J., Xu, K., and Kumar, A. Scaling llm test- time compute optimally can be more effective than scal- ing model parameters. arXiv preprint arXiv:2408.03314,
-
[39]
P., Kumar, A., Er- mon, S., and Poole, B
Song, Y ., Sohl-Dickstein, J., Kingma, D. P., Kumar, A., Er- mon, S., and Poole, B. Score-based generative modeling through stochastic differential equations. arXiv preprint arXiv:2011.13456, 2020b. Strudel, R., Tallec, C., Altch´e, F., Du, Y ., Ganin, Y ., Men- sch, A., Grath...
2011 arXiv
-
[40]
M., Hauth, A., et al
Team, G., Anil, R., Borgeaud, S., Wu, Y ., Alayrac, J.-B., Yu, J., Soricut, R., Schalkwyk, J., Dai, A. M., Hauth, A., et al. Gemini: a family of highly capable multimodal models. arXiv preprint arXiv:2312.11805,
-
[41]
Inference-time alignment in diffu- sion models with reward-guided generation: Tutorial and review
Uehara, M., Zhao, Y ., Wang, C., Li, X., Regev, A., Levine, S., and Biancalani, T. Inference-time alignment in diffu- sion models with reward-guided generation: Tutorial and review. arXiv preprint arXiv:2501.09685,
-
[42]
Towards understanding chain-of-thought prompting: An empirical study of what matters
Wang, B., Min, S., Deng, X., Shen, J., Wu, Y ., Zettlemoyer, L., and Sun, H. Towards understanding chain-of-thought prompting: An empirical study of what matters. arXiv preprint arXiv:2212.10001,
-
[43]
Seqdif- fuseq: Text diffusion with encoder-decoder transformers
Yuan, H., Yuan, Z., Tan, C., Huang, F., and Huang, S. Seqdif- fuseq: Text diffusion with encoder-decoder transformers. arXiv preprint arXiv:2212.10325,
-
[44]
A reparameter- ized discrete diffusion model for text generation
Zheng, L., Yuan, J., Yu, L., and Kong, L. A reparameter- ized discrete diffusion model for text generation. arXiv preprint arXiv:2302.05737,
-
[47]
coding",
library, which we use in our implementation to compute the diffusion path with L2D. B. Datasets B.1. Training Dataset Composition Our targeted training and validation data used for L2D and our baselines is a carefully extracted combination of different subsets of the recent la...
2024
-
[48]
Similarly, pass@1, pass@5, and pass@10 are calculated by verifying model generations on unit tests
and BigCode Evaluation Har- ness (Ben Allal et al., 2022), we include one unit test case in each prompt. Similarly, pass@1, pass@5, and pass@10 are calculated by verifying model generations on unit tests. GSM8K (Grade School Math 8K, Cobbe et al
2022
-
[50]
Classifier-free guidance categories of the training and evaluation task datasets. Dataset Category Guidance Category SmolTalk metamathqa-50k math SmolTalk numina-cot-100k math SmolTalk openhermes-100k general knowledge SmolTalk self-oss-instruct/coding coding SmolTalk self-oss...
2022
-
[52]
and MBPP (Austin et al., 2021b) coding benchmarks, together with performance on the PIQA (Bisk et al., 2020), ARC-Easy, and ARC-Challenge (Clark et al.,
2020
-
[53]
best-of-N
Performance and aggregated statistics for L2D evaluated with the ˆx estimate proposed by Dieleman et al. (2022) to compute the velocity. Method/Metric Mathematics Coding General knowledge Overall GSM8K MATH HumanEval MBPP MMLU MMLU-Pro Average Score Parameters Llama 3.2 1B Ins...
2022
-
[54]
for the diffusion timestep t. Method/Metric Mathematics Coding General knowledge Overall GSM8K MATH HumanEval MBPP MMLU MMLU-Pro Average Score Parameters Llama 3.2 1B Instruct 13.86 10.00 45.26 50.00 38.46 13.63 28.54 - + L2D 38.86 17.18 47.80 51.80 41.99 15.35 35.50 73M + L2D...
2024
-
[55]
<think>/<answer>
Performance and aggregated statistics for L2D and our main ablations across all Llama and Qwen models for additional pass@k settings and tasks. Method/Task Coding extended results Additional tasks Overall HumanEval@5 HumanEval@1 MBPP@5 MBPP@1 ARC-Easy ARC-Challenge PIQA Parame...
2022
-
[56]
As discussed in the main text, we find the effects of adaptive solvers and test-time advances like classifier-free guidance to be of remarkable importance, considerably beyond simply scaling the number of training parameters. We find these results quite analogous to similar fi...
2022
-
[57]
task implementation, with a more permissive answer extraction, eight chain-of-thought prompts, and greedy sampling, matching the task implementation from Dubey et al. (2024). Method/Task Mathematics GSM8K GSM8K (greedy/relaxed) Parameters Llama 3.2 1B Instruct 13.86 39.24 - + ...
2024
-
[64]
As suggested by Dieleman et al. (2022), we note that the optimal diffusion schedule might evolve throughout training, with recent diffusion advances like time-warping being immediate directions for potential future improvements of our framework. 15 Large Language Models to Dif...
2022
-
[128]
Extended Results D.1
41.06 18.45 44.03 46.83 42.09 16.06 34.75 73M D. Extended Results D.1. Inference ODE Solvers Our main experiments in Section 4 were collected with a second-order midpoint solver, an empirically robust choice in the traditional diffusion framework for different computational bu...
2021
-
[1969]
M., Wen, Y ., Zhang, W., and Wang, J
Feng, X., Wan, Z., Wen, M., McAleer, S. M., Wen, Y ., Zhang, W., and Wang, J. Alphazero-like tree-search can guide large language model decoding and training. arXiv preprint arXiv:2309.17179,
-
[2015]
Denoising diffusion im- plicit models
Song, J., Meng, C., and Ermon, S. Denoising diffusion im- plicit models. arXiv preprint arXiv:2010.02502, 2020a. Song, Y . and Ermon, S. Generative modeling by estimating gradients of the data distribution. Advances in neural information processing systems, 32,
2010 arXiv
-
[2016]
Savinov, N., Chung, J., Binkowski, M., Elsen, E., and Oord, A. v. d. Step-unrolled denoising autoencoders for text generation. arXiv preprint arXiv:2112.06749,
-
[2017]
and Salimans, T
Ho, J. and Salimans, T. Classifier-free diffusion guidance. arXiv preprint arXiv:2207.12598,
-
[2018]
Chen, T., Zhang, R., and Hinton, G
URL https:// github.com/rtqichen/torchdiffeq. Chen, T., Zhang, R., and Hinton, G. Analog bits: Gen- erating discrete data using diffusion models with self- conditioning. arXiv preprint arXiv:2208.04202,
-
[2019]
J., and Neubig, G
11 Large Language Models to Diffusion Finetuning Reid, M., Hellendoorn, V . J., and Neubig, G. Diffuser: Discrete diffusion via edit-based reconstruction. arXiv preprint arXiv:2210.16886,
-
[2020]
Training diffusion models with reinforcement learning
Black, K., Janner, M., Du, Y ., Kostrikov, I., and Levine, S. Training diffusion models with reinforcement learning. arXiv preprint arXiv:2305.13301,
-
[2021]
Bert: Pre-training of deep bidirectional trans- formers for language understanding
Devlin, J. Bert: Pre-training of deep bidirectional trans- formers for language understanding. arXiv preprint arXiv:1810.04805,
-
[2022]
Think you have solved question answering? try arc, the ai2 reasoning challenge
Clark, P., Cowhey, I., Etzioni, O., Khot, T., Sabharwal, A., Schoenick, C., and Tafjord, O. Think you have solved question answering? try arc, the ai2 reasoning challenge. arXiv:1803.05457v1,
-
[2023]
V ., R´e, C., and Mirhoseini, A
Brown, B., Juravsky, J., Ehrlich, R., Clark, R., Le, Q. V ., R´e, C., and Mirhoseini, A. Large language monkeys: Scaling inference compute with repeated sampling. arXiv preprint arXiv:2407.21787,
-
[2024]
and Li, Y
Allen-Zhu, Z. and Li, Y . Physics of language models: Part 1, context-free grammar. arXiv preprint arXiv:2305.13673, 2023a. Allen-Zhu, Z. and Li, Y . Physics of language models: Part 3.1, knowledge storage and extraction. arXiv preprint arXiv:2309.14316, 2023b. Austin, J., Joh...
-
[2025]
Ssd-lm: Semi- autoregressive simplex-based diffusion language model for text generation and modular control
Han, X., Kumar, S., and Tsvetkov, Y . Ssd-lm: Semi- autoregressive simplex-based diffusion language model for text generation and modular control. arXiv preprint arXiv:2210.17432,
Reviewed August 10, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.