Pith. sign in

REVIEW 3 major objections 8 minor 12 cited by

Inference-Time Alignment in Diffusion Models with Reward-Guided Generation: Tutorial and Review

T0 review · 3 major / 8 minor · reviewed 2026-08-10 · deepseek-v4-flash

Pith's one-line read All inference-time diffusion guidance methods approximate the same soft-optimal denoising policy.

desk verdict A useful, honest unification of inference-time diffusion guidance, but the classifier-guidance derivation misses a temperature-regime caveat and the novelty claim is oversold. read the letter →

arxiv 2501.09685 v2 pith:YL4X2YJM submitted 2025-01-16 cs.AI cs.LGq-bio.QMstat.ML

classification cs.AIcs.LGq-bio.QMstat.ML
keywords DiffusionModelsTest-TimeAlignmentReinforcementLearningClassifierGuidanceSequentialMonteCarloModel-BasedOptimizationTreeSearchProteinDesign
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

This paper is a tutorial and review that makes a single organizing claim: every major inference-time method for steering a pretrained diffusion model toward high rewards is an approximation of one target object, the soft-optimal denoising policy. That policy tilts each pretrained denoising step by an exponential weight of a soft value function, where the value function predicts the final reward from the current intermediate noisy state. The paper shows that classifier guidance, sequential Monte Carlo guidance, value-based importance sampling, and beam search all fit this template, and it derives new variants such as nested importance-sampling guidance and Riemannian classifier guidance. A sympathetic reader would care because the framework turns a scattered set of heuristics into a common design space: methods differ only in how they estimate the value function and how they sample from the tilted policy, which makes comparison and combination principled.

What carries the argument

The load-bearing object is the soft value function $v_t$, defined as the log-exponential-smoothed expected terminal reward from state $x_t$ under the pretrained denoising process, together with the soft-optimal policy it defines. This value function obeys a soft-Bellman equation, $\int p^{\mathrm{pre}}_{t-1}(x|x_t)\exp(v_{t-1}(x)/\alpha)\,dx=\exp(v_t(x_t)/\alpha)$, which is what makes the tilted policy sample the target distribution. In continuous time the same construction is formalized through Doob's transform: guiding the reverse SDE by the gradient of the value function, or in discrete Markov chains by the ratio $Q^\star_{x,y}=Q^{\mathrm{pre}}_{x,y}\exp(v_t(y)-v_t(x))$, turns the pretrained process into the reward-conditioned process. The machinery explains why derivative-free and derivative-based methods are the same idea in different skins: they differ only in how they evaluate or sample the tilted transition.

What would settle it

On a benchmark task such as protein stability maximization, compute a Monte Carlo estimate of $v_t(x_t)=\alpha\log\mathbb{E}[\exp(r(x_0)/\alpha)\mid x_t]$ by rolling out the pretrained model many times from each intermediate state, then compare it to the posterior-mean and regression approximations used by the methods; if the approximation error is large at practical noise levels, the derived guidance will deviate measurably from the target distribution $p^{(\alpha)}$.

Watch

Extended reading notes

Core claim

The central claim is that, for a reward function $r$ and temperature $\alpha$, the distribution one wants at the end of generation is $p^{(\alpha)}(x) \propto p^{\mathrm{pre}}(x)\exp(r(x)/\alpha)$, and the stepwise denoising process that realizes it is the soft-optimal policy $$ p^\star_{t-1}(\cdot|x_t) = \frac{$p^{{\mathrm{pre}}$}_{t-1}(\cdot|x_t)\exp(v_{t-1}(\cdot)/\$\alpha$)}{\exp(v_t(x_t)/\$\alpha$)}, $$ where $v_t(x_t)=\alpha\log\mathbb{E}[\exp(r(x_0)/\alpha)\mid x_t]$ is the soft value function, a look-ahead predictor of terminal reward from the intermediate state. Theorem 1 in the paper states that sequentially sampling this policy induces the target distribution $p^{(\alpha)}$. The paper then reads every major inference-time technique as an attempt to approximate this policy: SMC-based guidance and value-based importance sampling do so without gradients by reweighting and resampling particles, while classifier guidance adds the gradient of the value function to the drift, in Euclidean, Riemannian, and discrete settings. The same template also structures the paper's new algorithms, its treatment of tree search and editing, and its connection between diffusion guidance and inference-time decoding in language models.

Load-bearing premise

The methods only deliver the promised reward-naturalness trade-off if the soft value functions $v_t$ accurately predict terminal reward from intermediate states; the paper presents approximation schemes but reports no measurement of their accuracy, and its discrete derivative-based guidance explicitly lacks formal guarantees if those values are poor.

Editorial extensions

If this is right

  • Method comparison becomes a comparison of value-function estimators and sampling schemes: SMC guidance, SVDD, and classifier guidance can be ranked by which approximation they use and at what compute cost.
  • Methods can be combined: a differentiable value model can serve as the proposal inside SMC or value-based sampling while a non-differentiable reward model supplies the weights.
  • In discrete diffusion, the effective action space is $LK$ rather than $K^L$, so the tilted policy can be sampled in polynomial time with good value estimates; derivative-based guidance is a further, cheaper approximation with weaker guarantees.
  • Inference-time guidance can be distilled into a fast student policy, yielding stable fine-tuning that interpolates between guided sampling and standard RL fine-tuning.
  • Tree search such as MCTS applies to diffusion by treating the pretrained model as the tree expander and the value function as the leaf evaluator, opening a scaling path for alignment.

Reading between the lines

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

  • The paper's framework implies that the single most transferable investment across all guidance methods is a better soft value function; improving $v_t$ should improve SMC, beam search, and classifier guidance at once, a claim the paper motivates but does not itself test.
  • Because the discrete Taylor guidance is acknowledged to lack formal guarantees, a testable extension is to compare its samples against the exact polynomial-time tilted policy on small discrete problems; where the two diverge, derivative-free value-based sampling is the safer choice.
  • The same soft-optimal policy construction needs only a pretrained transition and a value estimator, so the tutorial's template should extend to other hierarchical generative models, including flow matching and masked language models, with the same three approximation choices.
  • A practical consequence not drawn in the paper is that compute budgets for inference-time guidance should be spent first on value-function accuracy and proposal breadth, since the unified policy is fixed and only the approximation quality varies.
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 / 8 minor

Summary. This paper is a tutorial/review of inference-time reward-guided generation for diffusion models. The authors propose a unified framework: all major inference-time guidance methods—SMC-based guidance, value-based importance sampling (SVDD), classifier guidance, and their variants—aim to approximate the same soft-optimal denoising policy p⋆_{t−1}(·|x_t) = p^{pre}_{t−1}(·|x_t) exp(v_{t−1}(·)/α) / exp(v_t(x_t)/α) (Eq. 8), where v_t are soft value functions that look ahead from intermediate states to terminal rewards. Theorem 1 (credited to prior work) states that sampling this policy yields the target distribution p^{pre}(x) exp(r(x)/α)/C. The paper then reviews derivative-free methods (SMC, SVDD, nested-SMC), derivative-based methods in continuous and discrete spaces (classifier guidance, Doob transforms), tree search, editing/refinement, connections to language models, and policy distillation. It also presents several algorithm variants claimed to be novel (nested-SMC guidance, tree-search application, iterative refinement) and provides a code repository for protein sequence design.

Significance. The unified perspective is genuinely useful: it connects a scattered literature to the soft-RL/Doob-transform/twisted-SMC machinery, clarifies the role of value functions as look-ahead predictors, and provides a practical taxonomy based on reward differentiability. The paper is transparent in crediting Theorem 1 to prior work and in acknowledging that discrete derivative guidance lacks formal guarantees (Section 5.2). The tutorial covers an important and timely application area (protein design) and makes the methods concrete through algorithms and a code link. The main limitations are (i) an unqualified claim that classifier guidance approximates the soft-optimal policy in the low-temperature regime central to reward maximization, which the paper's own small-α usage contradicts, and (ii) unvalidated novelty claims for the proposed algorithm variants. If these are addressed, the paper could serve as a standard reference for practitioners and researchers entering inference-time diffusion guidance.

major comments (3)
  1. [Section 4.1, Eq. (11)–(12), Algorithm 8] The derivation of classifier guidance replaces the soft-optimal categorical distribution with a Gaussian by Taylor-expanding the value exponential and dropping the term O(∥x_{t−1}−x_t∥²/α), justified by 'σ²_t is much smaller than α (as σ²_t scales with (δt))'. This requires α ≫ δt. However, the paper itself associates the alignment/reward-maximization setting with small α (Section 3.2: 'with small α'; Section 3.4: 'it is natural to set α = 0'), and the target distribution exp(r(x)/α) becomes increasingly peaked as α → 0. In that regime the neglected term is not small, and the Gaussian approximation can deviate substantially from the soft-optimal policy in Eq. (8). The paper flags the analogous lack of formal guarantees for discrete derivative-based guidance in Section 5.2, but does not flag this limitation in Section 4.1. Since classifier guidance is presented as one of the major methods unified under Eq. (8), the unification claim is conditional on a temperature/step-size regime that excludes the pure reward-maximization setting. Please add an explicit statement of the α ≫ δt assumption and discuss the small-α regime, or qualify the claim that classifier guidance approximates the soft-optimal policy in alignment tasks.
  2. [Abstract, Section 3.3, Section 6, Algorithm 12] The abstract claims 'several novel algorithms not yet covered in the literature', but the nested-SMC guidance (Algorithm 6) is explicitly presented as an adaptation of Naesseth et al. (2019, Algorithm 5), the tree-search discussion in Section 6 is programmatic without a concrete instantiation, and the iterative refinement in Algorithm 12 is a straightforward combination of existing noising/denoising and selection steps. No experimental evaluation is provided for any of these proposals. Figure 3, which is used to demonstrate scaling behavior, reports results from Li et al. (2024) without error bars; it is not an evaluation of the proposed variants. While empirical validation is not strictly required for a tutorial, the novelty claim should be tempered, and the proposals should be explicitly labeled as unvalidated suggestions with appropriate caveats about possible failure modes.
  3. [Section 2.2.1] The posterior-mean approximation v_t ≈ r(ˆx_0(x_t)) is introduced without any condition on the reward function or the diffusion noise level. This approximation is exact only if r is approximately affine or the conditional distribution of x_0 given x_t is tightly concentrated; otherwise it introduces a bias that can be large for the multimodal, nonlinear reward functions typical of alignment. The paper does not state this limitation, despite relying on this approximation in several downstream methods (e.g., Section 3.5 and the discussion of masked language models in Section 8.2.2). At minimum, a paragraph should be added explaining when this approximation is reasonable and when it is not, to help practitioners avoid using it in regimes where value estimates are systematically biased.
minor comments (8)
  1. [Abstract] There is a typo in 'value-based imoprtance sampling' in the abstract; it should be 'importance'.
  2. [Section 1 (page 4)] In the paragraph 'Inference-Time Techniques vs. Post-Training', 'pre-trainig' should be 'pre-training'.
  3. [Section 4 (opening paragraph)] The phrase 'protein srtucture generation' contains a typo; it should be 'protein structure generation'.
  4. [Section 4.4.1] The text contains typos 'Riemmanin manifold' and 'standard Ecludiain gradient'; both should be corrected to 'Riemannian' and 'Euclidean', respectively.
  5. [Eq. (11)] The exponent in Eq. (11) appears to have a sign error: the quadratic term should be subtracted (as in a Gaussian density), not added. As written, the expression does not correspond to the Gaussian form used in the subsequent derivation.
  6. [Section 5.2] The sentence 'formal derivatives cannot be done' should be rephrased to 'formal derivatives are not well-defined' or 'cannot be taken'.
  7. [Figure 3] Figure 3 reports mean rewards without error bars or an indication of the number of independent runs. Please specify that the results are from Li et al. (2024) and add error bars or seed information if the figure is reused or regenerated for this paper.
  8. [References] Several distinct 'Zhao et al. (2024)' entries appear in the bibliography (Zhao et al. 2024a,b,c, etc.); please disambiguate citations with initials or year suffixes to avoid confusion.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: the framework is a known soft-RL/twisted-SMC equivalence, and self-citations are backed by external standard results.

full rationale

This paper is a tutorial/review rather than a derivation of new predictive claims. Its central statement—that inference-time guidance methods approximate the soft-optimal denoising policy p*_{t-1}(·|x_t) = p^pre_{t-1}(·|x_t) exp(v_{t-1}(·)/α)/exp(v_t(x_t)/α), whose induced distribution is p^pre(x)exp(r(x)/α)/C—is a standard h-transform / soft-RL / twisted-SMC equivalence. Theorem 1 is imported from the authors' prior work (Uehara et al. 2024), but the paper explicitly acknowledges that 'Similar (and essentially equivalent) results to Theorem 1 have been known in various fields, including soft RL ..., language models ..., and ... computational statistics ... twisting potentials ... optimally twisted policies.' The discrete-time Doob transform (Theorem 3) is likewise attributed to Wang et al. (2024) but also to external stochastic-process references and to Nisonoff et al. (2024). The value functions in Section 2.2 are defined from the pre-trained process and reward, not fitted to the target quantity and then renamed as predictions. Each guidance algorithm is presented as an approximation to the same soft-optimal policy, and the 'novel' nested-SMC method is explicitly identified as Algorithm 5 of Naesseth et al. (2019), so no result is reduced to its own inputs by construction. The skeptic's concern about the α ≫ δt regime for the Taylor approximation in Section 4.1 is a validity/approximation issue, not evidence of circularity. Overall, the review is self-contained as a synthesis of known results, and the author-overlap citations are not load-bearing beyond what the external literature independently supports.

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

The paper introduces no new physical or formal entities; the soft value function is a standard construct. Its free parameter is the temperature alpha, and its main unproved inputs are the imported soft-optimal policy theorem, the Doob transform results, and the small-step approximations.

free parameters (1)
  • alpha (temperature)
    Hyperparameter in the target distribution (Eq. 5) balancing reward maximization against KL divergence to the pre-trained distribution; set by the user, not fit to data, but required by every derived guidance method.
assumptions (4)
  • domain assumption Theorem 1 (from Uehara et al. 2024): sequential sampling from soft-optimal policies induces the target distribution exp(r/alpha) p_pre / C.
    Quoted without proof from the authors' prior work; the whole unification relies on it, although it is a standard result in entropy-regularized RL and twisted SMC.
  • standard math Doob transform theorems (Theorems 2 and 3) for continuous and discrete diffusion models.
    Used to justify classifier guidance in continuous and discrete settings; stated as known stochastic-process results without proof.
  • domain assumption Small-step assumptions: sigma_t^2 << alpha in continuous guidance and O(delta t) asymptotics in discrete guidance (single-token changes).
    Used in Sections 4.1 and 5.1 to approximate the soft-optimal policy by a Gaussian or a polynomial-action policy; these approximations are not error-controlled.
  • domain assumption Availability of a pre-trained diffusion model and a reward/value function approximator.
    The entire review assumes these as inputs; no guidance on failure when the pre-trained model is mis-specified.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Inference-Time Alignment in Diffusion Models with Reward-Guided Generation: Tutorial and Review." pith.science (2026). https://pith.science/paper/YL4X2YJM

@misc{pith2026250109685,
  author       = {Pith},
  title        = {Pith review of: Inference-Time Alignment in Diffusion Models with Reward-Guided Generation: Tutorial and Review},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/YL4X2YJM}},
  note         = {Machine review of arXiv:2501.09685}
}
read the original abstract

This tutorial provides an in-depth guide on inference-time guidance and alignment methods for optimizing downstream reward functions in diffusion models. While diffusion models are renowned for their generative modeling capabilities, practical applications in fields such as biology often require sample generation that maximizes specific metrics (e.g., stability, affinity in proteins, closeness to target structures). In these scenarios, diffusion models can be adapted not only to generate realistic samples but also to explicitly maximize desired measures at inference time without fine-tuning. This tutorial explores the foundational aspects of such inference-time algorithms. We review these methods from a unified perspective, demonstrating that current techniques -- such as Sequential Monte Carlo (SMC)-based guidance, value-based sampling, and classifier guidance -- aim to approximate soft optimal denoising processes (a.k.a. policies in RL) that combine pre-trained denoising processes with value functions serving as look-ahead functions that predict from intermediate states to terminal rewards. Within this framework, we present several novel algorithms not yet covered in the literature. Furthermore, we discuss (1) fine-tuning methods combined with inference-time techniques, (2) inference-time algorithms based on search algorithms such as Monte Carlo tree search, which have received limited attention in current research, and (3) connections between inference-time algorithms in language models and diffusion models. The code of this tutorial on protein design is available at https://github.com/masa-ue/AlignInversePro

Figures

Figures reproduced from arXiv: 2501.09685 by the authors.

Figure 1
Figure 1. The objective of inference-time techniques [PITH_FULL_IMAGE:figures/full_fig_p002_1.png] view at source ↗
Figure 2
Figure 2. Summary of representative inference-time algorithms. Here, we aim to optimize down [PITH_FULL_IMAGE:figures/full_fig_p003_2.png] view at source ↗
Figure 3
Figure 3. Scaling inference time compute via value-based beam search ( [PITH_FULL_IMAGE:figures/full_fig_p004_3.png] view at source ↗
Figures from the paper (6 more)
Figure 4
Figure 4. Figure 4: Roadmap of This Paper. Considering these aspects, we provide a unified categorization of current inference-time tech￾niques in diffusion models, while also highlighting novel perspectives. The key message of this tutorial is summarized as follows. Key Message: A Unifie…
Figure 5
Figure 5. Figure 5: Typical foundational diffusion mod￾els for protein Sequences (especially, Red indi￾cates diffusion models). The former approach relies solely on sequence data, while the lat￾ter explicitly generates the structure first, fol￾lowed by the sequence. Notably, hybrid ap￾pro…
Figure 6
Figure 6. Figure 6: Formulating diffusion models using MDPs. [PITH_FULL_IMAGE:figures/full_fig_p016_6.png]
Figure 7
Figure 7. Figure 7: Intuition Behind Nested-SMC-Based Guidance. The algorithm comprises two components: [PITH_FULL_IMAGE:figures/full_fig_p023_7.png]
Figure 8
Figure 8. Figure 8: Evaluation of leaf nodes with estimated value functions at t−k rather than t−1 by further rolling out pre-trained policies. While any off-the-shelf search algorithm can be applied to the tree described above, a key decision is how to evaluate the leaf node in the searc…
Figure 9
Figure 9. Figure 9: Visualization of policy distillation that leverages inference-time techniques in fine-tuning. [PITH_FULL_IMAGE:figures/full_fig_p044_9.png]

Discussion (0). Continue with ORCID to comment.

Forward citations

Cited by 12 Pith papers

Reviewed papers in the Pith corpus that reference this work. Sorted by Pith novelty score. Full citation record

  1. Reward Score Matching: Unifying Reward-based Fine-tuning for Flow and Diffusion Models

    cs.LG 2026-04 unverdicted novelty 7.0 of 10

    Reward Score Matching unifies reward-based fine-tuning for flow and diffusion models by recasting alignment as score matching to a value-guided target.

  2. Flash-BoN: Instant Drafts for Inference-Time Scaling in Diffusion Models

    cs.CV 2026-07 conditional novelty 6.0 of 10

    Under wall-clock budgets, cheap multi-knob drafts plus multi-stage verification outperform guided intermediate search for diffusion T2I inference-time scaling.

  3. Solving Inverse Problems with Flow-based Models via Model Predictive Control

    eess.IV 2026-01 conditional novelty 6.0 of 10

    MPC-Flow applies model predictive control to guide pretrained flow models through inverse problems, with a single-step variant that avoids backpropagation and scales to 32B-parameter models on consumer hardware.

  4. Provable Diffusion Posterior Sampling for Bayesian Inversion

    stat.ML 2025-12 conditional novelty 6.0 of 10

    A diffusion posterior sampler using Monte Carlo Langevin score estimation and warm start is proven to converge in Wasserstein-2 distance under semi-log-concavity and sub-Gaussian assumptions, and outperforms DPS/TV on...

  5. Noise Hypernetworks: Amortizing Test-Time Compute in Diffusion Models

    cs.LG 2025-08 conditional novelty 6.0 of 10

    A noise hypernetwork learns a reward-tilted initial noise distribution for frozen distilled diffusion generators, recovering roughly half of test-time noise-optimization gains at a fraction of the compute.

  6. Diffusion Tree Sampling: Scalable inference-time alignment of diffusion models

    cs.LG 2025-06 conditional novelty 6.0 of 10

    Diffusion Tree Sampling is a Monte Carlo tree search over denoising trajectories that propagates terminal rewards backward to sample from reward-aligned distributions, showing up to 10x compute savings on tested benchmarks.

  7. Noise Conditional Variational Score Distillation

    cs.CV 2025-06 conditional novelty 6.0 of 10

    NCVSD trains a conditional generator to sample from denoising posteriors, enabling one-step and multi-step image generation and plug-and-play inverse problem solving with fewer function evaluations.

  8. Debiasing Guidance for Discrete Diffusion with Sequential Monte Carlo

    cs.LG 2025-02 conditional novelty 6.0 of 10

    An SMC importance-sampling algorithm debiases discrete diffusion guidance, asymptotically sampling from the target tempered distribution p0(x0)p(ζ|x0)^α.

  9. Large Language Models to Diffusion Finetuning

    cs.CL 2025-01 conditional novelty 6.0 of 10

    L2D finetunes a small parallel diffusion path on a frozen pretrained LLM so that running more diffusion steps at inference monotonically improves task accuracy.

  10. On the Design Space of Discrete Diffusion Online Adaptation for Molecular Optimization

    cs.LG 2026-07 conditional novelty 5.5 of 10

    Online fine-tuning of discrete diffusion models with complementary acquisition, CVaR shaping, density-entropy debiasing, replay, and validity control finds better molecules under fixed oracle budgets than offline fine...

  11. Solving Inverse Problems via Diffusion-Based Priors: An Approximation-Free Ensemble Sampling Approach

    cs.LG 2025-06 conditional novelty 5.0 of 10

    A weighted-particle sampler evolves the posterior through the diffusion model's reverse dynamics, with theoretical error bounds and improved image reconstructions.

  12. Graph Guided Diffusion: Unified Guidance for Conditional Graph Generation

    cs.LG 2025-05 conditional novelty 4.0 of 10

    GGDiff casts conditional graph diffusion as stochastic optimal control and uses zero-order estimators to guide pre-trained models under differentiable and non-differentiable rewards.

Reference graph

Works this paper leans on

16 extracted references · 5 canonical work pages · cited by 12 Pith papers

  1. [1]

    Adler, J

    Abramson, J., J. Adler, J. Dunger, R. Evans, T. Green, A. Pritzel, O. Ronneberger, L. Willmore, A. J. Ballard, J. Bambrick, et al. (2024). Accurate structure prediction of biomolecular interactions with alphafold

  2. [2]

    Journal of medicinal chemistry 47(7), 1750–1759

    enrichment factors in database screening. Journal of medicinal chemistry 47(7), 1750–1759. Han, S., I. Shenfeld, A. Srivastava, Y . Kim, and P. Agrawal (2024). Value augmented sampling for language model alignment and personalization. arXiv preprint arXiv:2405.06639. Hao, S., Y . Gu, H. Ma, J. J. Hong, Z. Wang, D. Z. Wang, and Z. Hu (2023). Reasoning with...

  3. [3]

    Ahdritz, G., N

    Nature, 1–3. Ahdritz, G., N. Bouatta, C. Floristean, S. Kadyan, Q. Xia, W. Gerecke, T. J. O’Donnell, D. Berenberg, I. Fisk, N. Zanichelli, et al. (2024). Openfold: Retraining alphafold2 yields new insights into its learning mechanisms and capacity for generalization. Nature Methods, 1–11. 52 Akiyama, M. and Y . Sakakibara (2022). Informative rna base embe...

  4. [4]

    Geurts, and L

    Ernst, D., P. Geurts, and L. Wehenkel (2005). Tree-based batch mode reinforcement learning. Journal of Machine Learning Research

  5. [6]

    Watkins, Y

    Fan, Y ., O. Watkins, Y . Du, H. Liu, M. Ryu, C. Boutilier, P. Abbeel, M. Ghavamzadeh, K. Lee, and K. Lee (2023). DPOK: Reinforcement learning for fine-tuning text-to-image diffusion models. arXiv preprint arXiv:2305.16381. Feng, X., Z. Wan, M. Wen, S. M. McAleer, Y . Wen, W. Zhang, and J. Wang (2023). Alphazero- like tree-search can guide large language ...

  6. [8]

    Khanov, M., J

    Minneapolis, Minnesota. Khanov, M., J. Burapacheep, and Y . Li (2024). Args: Alignment as reward-guided search.arXiv preprint arXiv:2402.01694. Kitagawa, G. (1993). A monte carlo filtering and smoothing method for non-gaussian nonlinear state space models. In Proceedings of the 2nd US-Japan joint seminar on statistical time series analysis, V olume

  7. [10]

    57 Leviathan, Y ., M

    Springer. 57 Leviathan, Y ., M. Kalman, and Y . Matias (2023). Fast inference from transformers via speculative decoding. In International Conference on Machine Learning, pp. 19274–19286. PMLR. Levin, D. A. and Y . Peres (2017). Markov chains and mixing times , V olume

  8. [15]

    Xu, M., L. Yu, Y . Song, C. Shi, S. Ermon, and J. Tang (2022). Geodiff: A geometric diffusion model for molecular conformation generation. arXiv preprint arXiv:2203.02923. Yang, K. and D. Klein (2021). Fudge: Controlled text generation with future discriminators. arXiv preprint arXiv:2104.05218. Yang, X., T. K. Aasawat, and K. Yoshizoe (2020). Practical m...

Show all 16 references
  1. [16]

    Rao, and M

    Zhang, L., A. Rao, and M. Agrawala (2023). Adding conditional control to text-to-image diffusion models. In Proceedings of the IEEE/CVF International Conference on Computer Vision , pp. 3836–3847. Zhang, R., M. Haider, M. Yin, J. Qiu, M. Wang, P. Bartlett, and A. Zanette (2024...

  2. [30]

    Naesseth, C. A., F. Lindsten, T. B. Sch ¨on, et al. (2019). Elements of sequential monte carlo. Foundations and Trends® in Machine Learning 12(3), 307–392. Nakano, R., J. Hilton, S. Balaji, J. Wu, L. Ouyang, C. Kim, C. Hesse, S. Jain, V . Kosaraju, W. Saunders, et al. (2021). ...

  3. [32]

    Sohl-Dickstein, D

    Song, Y ., J. Sohl-Dickstein, D. P. Kingma, A. Kumar, S. Ermon, and B. Poole (2021). Score-based generative modeling through stochastic differential equations. ICLR. Stanton, D. T. and P. C. Jurs (1990). Development and use of charged partial surface area structural descriptor...

  4. [36]

    Huang, J

    Xiao, C., R. Huang, J. Mei, D. Schuurmans, and M. M¨uller (2019). Maximum entropy monte-carlo planning. Advances in Neural Information Processing Systems

  5. [77]

    Kakade, S. and J. Langford (2002). Approximately optimal approximate reinforcement learning. In Proceedings of the Nineteenth International Conference on Machine Learning, pp. 267–274. Kawar, B., M. Elad, S. Ermon, and J. Song (2022). Denoising diffusion restoration models. Ad...

  6. [107]

    Levine, S

    American Mathematical Soc. Levine, S. (2018). Reinforcement learning and control as probabilistic inference: Tutorial and review. arXiv preprint arXiv:1805.00909. Lew, A. K., T. Zhi-Xuan, G. Grand, and V . K. Mansinghka (2023). Sequential monte carlo steering of large language...

  7. [110]

    Kocsis, L. and C. Szepesv´ari (2006). Bandit based monte-carlo planning. In European conference on machine learning, pp. 282–293. Springer. Leblond, R., J.-B. Alayrac, L. Sifre, M. Pislar, J.-B. Lespiau, I. Antonoglou, K. Simonyan, and O. Vinyals (2021). Machine translation de...

  8. [5252]

    Brown, T

    Springer Science & Business Media. Brown, T. B. (2020). Language models are few-shot learners. arXiv preprint arXiv:2005.14165. Campbell, A., J. Benton, V . De Bortoli, T. Rainforth, G. Deligiannidis, and A. Doucet (2022). A continuous time framework for discrete denoising mod...

Pith tools

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