Pith. sign in

REVIEW 3 major objections 5 minor 21 references

RL-Native Distillation: Exploiting Scored Trajectories for Few-Step Image Generation

T0 review · 3 major / 5 minor · reviewed 2026-08-11 · deepseek-v4-flash

Pith's one-line read REST shows that reward-scored RL rollouts alone can train a few-step image generator that matches its 40-step teacher.

desk verdict A genuinely new single-stage RL-distillation mechanism whose headline efficiency claim is contradicted by the paper's own timing breakdown. read the letter →

arxiv 2608.09226 v1 pith:CQV4OGF4 submitted 2026-08-10 cs.CV cs.AI

classification cs.CVcs.AI
keywords text-to-imagegenerationfew-stepdistillationreinforcementlearningdiffusionmodelsadvantage-weightedregressionclassifier-freeguidancerewardalignmenttrajectory
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

The paper's central claim is that the reward-scored trajectories produced during diffusion RL are already enough to train a few-step student, so reward alignment and few-step distillation can be merged into one stage. The proposed REST framework attaches a decoupled student branch to an existing RL teacher; the student regresses to segment velocities extracted from the teacher's own rollouts while the teacher's optimization is untouched. To keep low-reward behaviors from being copied, Advantage-Modulated Distillation (AMD) multiplies the imitation loss by a signed weight derived from the rollout advantage, strengthening preferred trajectories and mildly repelling poor ones. On Stable Diffusion 3.5 Medium, an 8-step, no-classifier-free-guidance REST student matches or surpasses the 40-step CFG-enabled RL teacher on GenEval, OCR, and PickScore with less than 25% additional training cost over pure RL.

What carries the argument

The central object is the reward-scored teacher rollout turned into a segment-wise imitation dataset. For each teacher trajectory $T=\{x_{t_0},\ldots,x_{t_M}\}$, REST picks a $K$-step subschedule $t_{q_0},\ldots,t_{q_K}$ and defines the demonstrated action for segment $k$ as the finite-difference velocity $a_k=(x_{t_{q_{k+1}}}-x_{t_{q_k}})/(t_{q_{k+1}}-t_{q_k})$. The student regresses its velocity $v_\theta(s_k)$ to $a_k$ with the base loss $\ell_{\mathrm{base}}=\|v_\theta(s_k)-a_k\|^2$. The shaping mechanism is AMD: fused, clipped, group-normalized advantages $A_{\mathrm{mix}}$ enter through the signed weight $w=\lambda(A_{\mathrm{mix}}+b)$ with $\lambda=1$, $b=0.5$, so the objective decomposes into a constant-weight imitation prior plus a reward-driven correction that can turn negative for low-reward rollouts. This signed weighting is what gives the distilled student a CFG-like contrastive effect while leaving the teacher's RL objective untouched.

What would settle it

Shuffle the per-rollout advantages across trajectories before constructing $w=\lambda(A_{\mathrm{mix}}+b)$ and retrain REST under the same budget. If the 8-step CFG-free student still matches the 40-step RL teacher on GenEval, OCR, and PickScore, the signed advantage modulation is not what produces the reported gains and the central claim collapses.

Watch

Extended reading notes

Core claim

On the paper's own terms, REST is a proof that distillation can be made RL-native: a diffusion RL run already produces reward-scored finite-step trajectories, and those intermediate states are distillation supervision rather than a disposable byproduct. The teacher branch continues its original RL objective; a separate student branch learns a $K$-step, CFG-free generator by imitating piecewise segment velocities $a_k=(x_{t_{q_{k+1}}}-x_{t_{q_k}})/(t_{q_{k+1}}-t_{q_k})$ on a $K$-step subschedule of the teacher's $M$-step rollout. The AMD loss $\mathcal{L}_{\mathrm{AMD}}(\theta)=\mathbb{E}[\lambda(A_{\mathrm{mix}}+b)\,\ell_{\mathrm{base}}(\theta;k)]$ turns each rollout's clipped, group-normalized advantage into a signed weight: $\lambda=1$, $b=0.5$, so high-advantage trajectories are imitated more strongly and low-advantage ones receive a mild repulsive gradient. A KL-EMA term $\|v_\theta(s_k)-v_{\theta_{\mathrm{ema}}}(s_k)\|^2$ anchors the student against the evolving teacher. Across GenEval, OCR, and PickScore, the resulting 8-step CFG-free student matches or surpasses the 40-step CFG-enabled RL teacher on both training rewards and held-out DrawBench quality metrics, with the student branch accounting for about 26.1% of wall-clock time and the overall added cost below 25% over pure RL.

Load-bearing premise

The load-bearing premise is that a student generating in a few steps without classifier-free guidance can faithfully inherit the teacher's reward-aligned behavior just by regressing to segment velocities from a many-step, guidance-enabled rollout, without needing its own guidance-free rollouts or its own reward evaluation.

Editorial extensions

If this is right

  • Text-to-image post-training can collapse RL alignment and few-step distillation into a single stage, removing the risk that a separate distillation pass washes out reward gains.
  • The student branch enables CFG-free few-step inference, so deployment can use eight steps without classifier-free guidance while retaining the teacher's reward-aligned output quality.
  • Because the student reuses teacher rollouts and rewards, no extra image rollouts, distillation dataset, or fake-score network are needed; added cost stays below 25% of the RL run.
  • AMD is a wrapper: swapping in a different base distillation loss, such as a phase-consistency loss, preserves the advantage-modulation benefit, so the method is not tied to one distillation objective.
  • The decoupled design means the teacher's RL optimization is unchanged, and the paper argues that any forward-process RL teacher sharing the anchored, reward-shifted velocity-regression form can be used in the same way.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • If the reported overhead scaling holds, the reuse-of-rollouts recipe should transfer to larger text-to-image and video backbones, where sampling cost is an even larger share of training; the paper does not test this.
  • The signed, CFG-like modulation suggests a training-time analogue of classifier-free guidance: repulsing low-reward trajectory segments may substitute for negative prompts or guidance at inference, a connection the paper notes but does not directly verify.
  • The paper's own limitation section leaves DMD2-style distribution-matching losses untested, so the immediate testable extension is REST with such a loss aimed at 4-step CFG-free inference.
  • More broadly, any sequential decision process that produces reward-scored trajectories could use the same segment-wise, advantage-modulated regression recipe; REST's machinery is not obviously restricted to diffusion image generation.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

3 major / 5 minor

Summary. The paper proposes REST, a single-stage framework that attaches a decoupled student distillation branch to an ongoing diffusion RL teacher. The student is trained on the teacher's reward-scored rollout trajectories by regressing to segment velocities, with an Advantage-Modulated Distillation (AMD) weight that reweights the base MSE loss by a fused, clipped group-normalized advantage. Experiments on Stable Diffusion 3.5 Medium cover compositional generation (GenEval), visual text rendering (OCR), and human-preference alignment (PickScore), with DrawBench as an out-of-domain quality benchmark. The paper reports that the 8-step CFG-free REST student matches or surpasses its 40-step CFG-enabled RAM teacher, that AMD and EMA regularization are both beneficial in ablations, that the method works with a PCM-style base loss as well as the default segment-velocity loss, and that the additional training overhead is below 25% over pure RL.

Significance. If the central claims are correct, REST is a practically useful contribution: it reuses RL rollouts that would otherwise be discarded, avoids a separate distillation stage, and provides a generic reward-aware wrapper (AMD) that can be attached to different distillation losses. The paper's strengths are its broad three-task evaluation, the external DrawBench metrics, the explicit ablations isolating the AMD shift and EMA regularization, and a comparison against RTDMD under matched rewards and prompts. The framework is not circular: AMD reweights an imitation loss with rollout advantages and success is measured on external benchmarks. However, the quantitative efficiency claim in the abstract and conclusion is internally inconsistent with the timing breakdown in Section 4.4, and the appendix's theoretical support for extending REST to DiffusionNFT restates the RAM objective in a way that disagrees with the main text. These issues are load-bearing and need to be fixed before the paper can be accepted.

major comments (3)
  1. [§4.4, Abstract, Conclusions] The training-overhead claim is internally inconsistent. Section 4.4 reports that sampling rollouts with reward computation accounts for 40.7% of wall-clock time, teacher training for 33.3%, and student training for 26.1%. A pure-RL baseline would therefore be 40.7% + 33.3% = 74.0% of the REST wall-clock time, so the student branch adds 26.1/74.0 ≈ 35.3% training overhead, not 'below 25%'. If one instead interprets the '26.1% additional training overhead' in the contributions list as the student's share of the total, that figure is also above 25%. The abstract and conclusion repeat the 'below 25% over pure RL' claim, so this is not a wording nit: the paper's numerical efficiency guarantee lacks a consistent accounting and must be corrected.
  2. [Appendix A, Eq. (23); §3.1 Eq. (3)] The appendix's restatement of the RAM objective is inconsistent with the main text. Eq. (23) writes the RAM target as v_base + η A_RAM (v_gt - v_old), whereas Eq. (3) in the main text regresses v_φ toward sg(v_base + r(x_0)(v_gt - v_φ(x_t))). These are different objects: Eq. (3) involves the current trainable policy v_φ and the raw reward r(x_0), not a lagged policy v_old and an advantage A_RAM. Because Eq. (24) is then used to argue that RAM and DiffusionNFT share an 'anchored, reward-shifted velocity-regression' structure, and Section 5 relies on that argument to support extending REST to DiffusionNFT, this inconsistency undermines a stated theoretical claim. Either the notation must be aligned and the equivalence proved, or the approximation must be stated explicitly with its conditions.
  3. [Abstract, §4.2, Tab. 1] The abstract's claim that REST 'matches or surpasses its 40-step RL teacher' is stronger than the reported table supports. In the compositional row of Tab. 1, Ours† at 8 steps has GenEval 0.94 and Aesthetic 1.05, while RAM† at 40 steps has 0.95 and 1.12; in the OCR row, Ours† has Aesthetic 1.00 versus 1.07; and in the PickScore row, Ours† has DeQA 4.15 versus 4.21. No error bars, confidence intervals, or repeated-seed results are reported, and many of the observed differences are small (0.01–0.07). The text should either soften 'surpasses' to 'is comparable to' or provide variance estimates and an explicit aggregation rule for deciding when the student surpasses the teacher.
minor comments (5)
  1. [§4.2, Tab. 1] The statement that REST 'obviously surpasses' Flow-GRPO, AWM, and DiffusionNFT is not a controlled comparison: those baseline rows are not marked as using the same multi-reward protocol as the REST rows, so differences in image quality could be due to the reward protocol rather than the method.
  2. [Tab. 1, Tab. 2] Several cells in Tables 1 and 2 are blank or ambiguous in the current rendering; please state explicitly which entries are not applicable and which are missing.
  3. [Algorithm 2, §4.1] The pseudo-Huber constant c_huber used in the PCM variant is not given in the experimental setup; please report its value or state that it was chosen by validation.
  4. [Fig. 7] The claim that the PCM variant 'gets similar performance' to the segment-velocity variant is only supported by qualitative images; include the numeric DrawBench metrics for both variants.
  5. [§4.1] Please report the number of generated images per prompt and the exact evaluation protocol for DrawBench metrics, as well as whether metrics are averaged over multiple seeds.

Circularity Check

0 steps flagged · score 0.0 of 10

No circular reasoning found; the training-cost claim is internally inconsistent but not circular.

full rationale

REST's derivation chain is self-contained. The student objective (Eq. 14) is L_AMD + beta*L_KL-EMA, where L_AMD = E[lambda(A_mix+b)*l_base] reweights the teacher's segment velocities by rollout advantages; this is exactly the signed imitation mechanism described, and the teacher's RL update is decoupled from the student update. The student is then evaluated on held-out DrawBench prompts and external GenEval/OCR/PickScore metrics, so no predicted quantity is defined in terms of its own target. Appendix A's equivalence between DiffusionNFT and RAM is a direct algebraic gradient equivalence, not an imported theorem from the same authors, and no load-bearing claim reduces to a self-citation. The one notable flaw is Section 4.4's training-cost accounting: the breakdown (sampling/reward 40.7%, teacher training 33.3%, student training 26.1%) implies pure RL is 74.0% of REST's wall-clock time, so the student adds 26.1/74.0 approximately 35.3%, which contradicts the abstract's 'below 25% over pure RL' and the introduction's 'only 26.1% additional training overhead.' This is an internal numerical inconsistency, not a circular derivation. Also, the AMD hyperparameters b and beta are tuned on DrawBench and then reported on DrawBench, which lowers the independence of the headline numbers slightly but does not make any equation reduce to its inputs.

Assumptions & free parameters 5 free parameters · 4 assumptions · 0 invented entities

REST rests on empirical transfer assumptions (teacher rollouts are valid student targets, signed advantage weighting is stable, EMA absorbs drift) and on several hand-chosen hyperparameters (b=0.5, beta=0.2, lambda=1, alpha_i unreported). No new physical or mathematical entities are introduced.

free parameters (5)
  • b (AMD shift) = 0.5
    Hand-chosen to balance positive imitation prior and negative repulsion; ablation in Tab. 4 compares 0, 0.5, and 1.0 on DrawBench.
  • beta (KL-EMA coefficient) = 0.2
    Regularization weight chosen for stability against the evolving teacher; Tab. 4 ablates with and without EMA.
  • lambda (AMD scale) = 1.0
    Global scale selected by hand in Eq. 12; no sensitivity analysis is provided.
  • alpha_i (reward fusion weights) = not reported
    Weights for combining OCR/GenEval and PickScore advantages in Eq. 11; the paper does not specify their values, which hurts replication.
  • K (student inference steps) = 8
    Hand-chosen student step count; the central claim is specifically for 8-step CFG-free inference.
assumptions (4)
  • domain assumption Teacher rollouts under a 20-step CFG-enabled schedule are valid distillation targets for a CFG-free few-step student.
    Eqs. 5 and 6 construct segment velocities from the teacher's CFG rollout as supervised targets; no correction is made for guidance scale or step-count mismatch.
  • domain assumption Advantage-weighted MSE with signed weights is a stable surrogate objective.
    Secs. 3.3 and 3.4 justify the signed modulation by analogy to CFG and AWR; negative weights produce repulsive gradients whose stability is only empirically validated.
  • domain assumption The EMA self-regularization absorbs teacher policy drift.
    Eq. 13 relies on the EMA student tracking the online student while the teacher policy keeps changing; no formal guarantee is given.
  • domain assumption The DiffusionNFT-RAM structural equivalence holds approximately under v_old close to v_base and w_plus close to w_minus.
    Appendix A derives the shared anchored velocity-regression template, but explicitly acknowledges the equivalence is only approximate when the normalizers differ.

how reviews work

0 comments
Cite this review

Pith. "Pith review of RL-Native Distillation: Exploiting Scored Trajectories for Few-Step Image Generation." pith.science (2026). https://pith.science/paper/CQV4OGF4

@misc{pith2026260809226,
  author       = {Pith},
  title        = {Pith review of: RL-Native Distillation: Exploiting Scored Trajectories for Few-Step Image Generation},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/CQV4OGF4}},
  note         = {Machine review of arXiv:2608.09226}
}
read the original abstract

Efficient text-to-image generation requires both reinforcement-learning (RL)-based reward alignment and few-step distillation, yet these procedures are typically performed sequentially, increasing training cost and risking the loss of reward gains during compression. We instead take an RL-native perspective: diffusion RL already generates reward-scored finite-step trajectories, whose intermediate states provide a natural source of distillation supervision rather than a disposable byproduct of sampling. Based on this insight, we propose REST (Reward-Enhanced Scored-Trajectory Distillation), a single-stage RL-distillation co-training framework that attaches a decoupled student to an arbitrary RL teacher. The student learns segment-wise from the teacher's evolving rollout trajectories while leaving the original teacher optimization unchanged. To prevent uniform imitation from preserving undesirable low-reward behaviors, we further introduce Advantage-Modulated Distillation (AMD), which transforms rollout advantages into signed weights over a base distillation loss. AMD strengthens supervision from preferred trajectories and mildly repels the student from low-reward ones. The resulting framework is lightweight and plug-and-play, requires no extra image rollouts, no separate distillation dataset, and no adversarial training. Experiments on compositional generation, visual text rendering, and human-preference alignment show that REST enables few-step CFG-free inference that matches or surpasses its 40-step RL teacher, with an overall additional training cost below 25% over pure RL. REST improves DrawBench PickScore over RTDMD by 0.82 while requiring only one-fifth of the training iterations.

Figures

Figures reproduced from arXiv: 2608.09226 by the authors.

Figure 1
Figure 1. REST achieves few-step, reward-aligned gener [PITH_FULL_IMAGE:figures/full_fig_p002_1.png] view at source ↗
Figure 2
Figure 2. Overview of REST. The decoupled student reuses reward-scored teacher rollouts, while [PITH_FULL_IMAGE:figures/full_fig_p004_2.png] view at source ↗
Figure 3
Figure 3. Qualitative comparison on DrawBench. REST achieves high-quality outputs with superior [PITH_FULL_IMAGE:figures/full_fig_p008_3.png] view at source ↗
Figures from the paper (6 more)
Figure 4
Figure 4. Figure 4: Qualitative comparison under PickScore alignment on the Pick-a-Pic testset. [PITH_FULL_IMAGE:figures/full_fig_p010_4.png]
Figure 5
Figure 5. Figure 5: Qualitative comparison on visual text rendering. Single OCR reward leads to collapse [PITH_FULL_IMAGE:figures/full_fig_p011_5.png]
Figure 6
Figure 6. Figure 6: The shift b controls the positive imitation prior in the AMD weight. A moderate shift preserves the necessary imitation prior while turning clearly low-quality trajectories into repulsive supervision, thereby amplifying the effect/style from RL signals. to evaluate its…
Figure 7
Figure 7. Figure 7: REST with different distillation objectives. AMD performs consistently with segment [PITH_FULL_IMAGE:figures/full_fig_p012_7.png]
Figure 8
Figure 8. Figure 8: Additional qualitative results on visual text rendering. [PITH_FULL_IMAGE:figures/full_fig_p020_8.png]
Figure 9
Figure 9. Figure 9: Additional qualitative results on compositional generation (GenEval task). [PITH_FULL_IMAGE:figures/full_fig_p021_9.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

21 extracted references · 3 canonical work pages

  1. [1]

    Reinforce Adjoint Matching: Scaling RL Post-Training of Diffusion and Flow-Matching Models

    Andreas Bergmeister, Stefanie Jegelka, Nikolas N ¨usken, Carles Domingo-Enrich, and Jakiw Pid- strigach. Reinforce adjoint matching: Scaling rl post-training of diffusion and flow-matching models.arXiv preprint arXiv:2605.10759,

  2. [3]

    Directly fine-tuning diffusion models on differentiable rewards

    Kevin Clark, Paul Vicol, Kevin Swersky, and David Fleet. Directly fine-tuning diffusion models on differentiable rewards. InInternational Conference on Learning Representations, volume 2024, pp. 4793–4822,

  3. [7]

    Distribution matching distillation meets reinforcement learning.arXiv preprint arXiv:2511.13649,

    Dengyang Jiang, Dongyang Liu, Zanyi Wang, Qilong Wu, Liuzhuozheng Li, Hengzhuang Li, Xin Jin, David Liu, Zhen Li, Bo Zhang, et al. Distribution matching distillation meets reinforcement learning.arXiv preprint arXiv:2511.13649,

  4. [8]

    Offline reinforcement learning with implicit q- learning.arXiv preprint arXiv:2110.06169,

    Ilya Kostrikov, Ashvin Nair, and Sergey Levine. Offline reinforcement learning with implicit q- learning.arXiv preprint arXiv:2110.06169,

  5. [10]

    Flow matching for generative modeling.arXiv preprint arXiv:2210.02747,

    Yaron Lipman, Ricky TQ Chen, Heli Ben-Hamu, Maximilian Nickel, and Matt Le. Flow matching for generative modeling.arXiv preprint arXiv:2210.02747,

  6. [11]

    Flow-grpo: Training flow matching models via online rl.arXiv preprint arXiv:2505.05470,

    Jie Liu, Gongye Liu, Jiajun Liang, Yangguang Li, Jiaheng Liu, Xintao Wang, Pengfei Wan, Di Zhang, and Wanli Ouyang. Flow-grpo: Training flow matching models via online rl.arXiv preprint arXiv:2505.05470,

  7. [13]

    Latent consistency models: Synthe- sizing high-resolution images with few-step inference.arXiv preprint arXiv:2310.04378,

    Simian Luo, Yiqin Tan, Longbo Huang, Jian Li, and Hang Zhao. Latent consistency models: Synthe- sizing high-resolution images with few-step inference.arXiv preprint arXiv:2310.04378,

  8. [14]

    Advantage-weighted regression: Simple and scalable off-policy reinforcement learning.arXiv preprint arXiv:1910.00177,

    Xue Bin Peng, Aviral Kumar, Grace Zhang, and Sergey Levine. Advantage-weighted regression: Simple and scalable off-policy reinforcement learning.arXiv preprint arXiv:1910.00177,

Show all 21 references
  1. [15]

    Progressive distillation for fast sampling of diffusion models.arXiv preprint arXiv:2202.00512,

    Tim Salimans and Jonathan Ho. Progressive distillation for fast sampling of diffusion models.arXiv preprint arXiv:2202.00512,

  2. [16]

    Laion-400m: Open dataset of clip-filtered 400 million image-text pairs.arXiv:2111.02114,

    Christoph Schuhmann, Richard Vencu, Romain Beaumont, Robert Kaczmarczyk, Clayton Mullis, Aarush Katta, Theo Coombes, Jenia Jitsev, and Aran Komatsuzaki. Laion-400m: Open dataset of clip-filtered 400 million image-text pairs.arXiv:2111.02114,

  3. [17]

    Deepseekmath: Pushing the limits of mathemati- cal reasoning in open language models.arXiv preprint arXiv:2402.03300,

    Zhihong Shao, Peiyi Wang, Qihao Zhu, Runxin Xu, Junxiao Song, Xiao Bi, Haowei Zhang, Mingchuan Zhang, YK Li, Yang Wu, et al. Deepseekmath: Pushing the limits of mathemati- cal reasoning in open language models.arXiv preprint arXiv:2402.03300,

  4. [18]

    Denoising diffusion implicit models.arXiv preprint arXiv:2010.02502,

    Jiaming Song, Chenlin Meng, and Stefano Ermon. Denoising diffusion implicit models.arXiv preprint arXiv:2010.02502,

  5. [19]

    Human preference score v2: A solid benchmark for evaluating human preferences of text-to- image synthesis.arXiv preprint arXiv:2306.09341,

    Xiaoshi Wu, Yiming Hao, Keqiang Sun, Yixiong Chen, Feng Zhu, Rui Zhao, and Hongsheng Li. Human preference score v2: A solid benchmark for evaluating human preferences of text-to- image synthesis.arXiv preprint arXiv:2306.09341,

  6. [20]

    Advantage weighted matching: Aligning rl with pretraining in diffusion models.arXiv preprint arXiv:2509.25050, 2025a

    Shuchen Xue, Chongjian Ge, Shilong Zhang, Yichen Li, and Zhi-Ming Ma. Advantage weighted matching: Aligning rl with pretraining in diffusion models.arXiv preprint arXiv:2509.25050, 2025a. Zeyue Xue, Jie Wu, Yu Gao, Fangyuan Kong, Lingting Zhu, Mengzhao Chen, Zhiheng Liu, Wei L...

  7. [21]

    Diffusionnft: Online diffusion reinforcement with forward process.arXiv preprint arXiv:2509.16117,

    Kaiwen Zheng, Huayu Chen, Haotian Ye, Haoxiang Wang, Qinsheng Zhang, Kai Jiang, Hang Su, Stefano Ermon, Jun Zhu, and Ming-Yu Liu. Diffusionnft: Online diffusion reinforcement with forward process.arXiv preprint arXiv:2509.16117,

  8. [2021]

    Mixgrpo: Unlocking flow-based grpo efficiency with mixed ode-sde.arXiv preprint arXiv:2507.21802,

    Junzhe Li, Yutao Cui, Tao Huang, Yinping Ma, Chun Fan, Yiming Cheng, Miles Yang, Zhao Zhong, and Liefeng Bo. Mixgrpo: Unlocking flow-based grpo efficiency with mixed ode-sde.arXiv preprint arXiv:2507.21802,

  9. [2022]

    Reinforcing few-step generators via reward-tilted distribution matching.arXiv preprint arXiv:2605.26108,

    Yushi Huang, Xiangxin Zhou, Ruoyu Wang, Chi Zhang, Jun Zhang, and Tianyu Pang. Reinforcing few-step generators via reward-tilted distribution matching.arXiv preprint arXiv:2605.26108,

  10. [2023]

    Classifier-free diffusion guidance.arXiv preprint arXiv:2207.12598,

    Jonathan Ho and Tim Salimans. Classifier-free diffusion guidance.arXiv preprint arXiv:2207.12598,

  11. [2024]

    Rdm: Re-conceptualizing distribution matching as a reward for diffusion distillation.arXiv preprint arXiv:2603.28460,

    Linqian Fan, Peiqin Sun, Tiancheng Wen, Shun Lu, and Chengru Song. Rdm: Re-conceptualizing distribution matching as a reward for diffusion distillation.arXiv preprint arXiv:2603.28460,

  12. [2025]

    Knowledge distillation in iterative generative models for improved sampling speed.arXiv preprint arXiv:2101.02388,

    Eric Luhman and Troy Luhman. Knowledge distillation in iterative generative models for improved sampling speed.arXiv preprint arXiv:2101.02388,

  13. [2026]

    Nft: Bridging supervised learning and reinforcement learning in math reasoning

    Huayu Chen, Kaiwen Zheng, Qinsheng Zhang, Ganqu Cui, Yin Cui, Haotian Ye, Tsung-Yi Lin, Ming-Yu Liu, Jun Zhu, and Haoxiang Wang. Nft: Bridging supervised learning and reinforcement learning in math reasoning. InInternational Conference on Learning Representations, volume 2026,...

Pith tools

Reviewed August 11, 2026 · model on record in the stance chip above.