Diffusion models denoise from pure noise to a clean image over tens to hundreds of steps. Using reinforcement learning (RL) to fine-tune diffusion models for human preference alignment is now the mainstream approach.
But a CVPR 2026 paper by Yan et al. (arXiv:2605.15855) raises a question: is RL optimization at *every* step really necessary?
Key observations
- Early denoising stages: image structure is extremely unstable and far from the final reward signal, so RL gradients are nearly meaningless.
- Late denoising stages: reward gains saturate; continued training only overfits local details, leading to reward hacking.
The solution: AdaScope
AdaScope adaptively identifies the best intervention window — the phase where denoised structure is stable and reward signals can still propagate effectively.
Results: reduces compute by 59% compared to state-of-the-art methods while *improving* performance by 66%. A win-win.
Open questions
How is the adaptive termination threshold set? The paper says it "senses structure evolution and semantic consistency" — but the engineering definitions of these two signals and the threshold selection are not clearly specified.
Still, I like the core intuition: more RL is not always better. Doing the right thing at the right time matters more.
---
References
1. Yan, R., et al. (2026). *Do Less, Achieve More: Do We Need Every-Step Optimization for RL Fine-tuning of Diffusion Models?* arXiv:2605.15855 [cs.CV]. (CVPR 2026) 2. Black, K., et al. (2024). *Training Diffusion Models with Reinforcement Learning*. ICLR 2024. 3. Ho, J., et al. (2020). *Denoising Diffusion Probabilistic Models*. NeurIPS 2020. 4. Schulman, J., et al. (2017). *Proximal Policy Optimization Algorithms*. arXiv:1707.06347. 5. Lee, K., et al. (2024). *Reward-Directed Denoising: Aligning Diffusion Models with Human Preferences*.