REVIEW 3 major objections 5 minor 3 cited by
Calibrating Generative Models to Distributional Constraints
T0 review · 3 major / 5 minor · reviewed 2026-08-04 · deepseek-v4-flash
Pith's one-line read Calibrating a generative model to distributional constraints is a search for the closest model in KL divergence, and two surrogate losses make that search practical at scale.
desk verdict A genuinely useful constrained fine-tuning method with solid math and strong large-scale demos, but the abstract overstates the model size and the gradient estimator's variance is under-examined. 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 engine is the maximum-entropy exponential-tilt identity, p_α*(x) ∝ p_base(x) exp(α^T h(x)), which characterizes the KL-closest distribution satisfying the moment constraint. The reward loss is built by estimating α* through the concave dual problem α_hat = argmax_α α^T h* − log(mean_n exp(α^T h(x_n))) and then minimizing D_KL(p_θ ∥ p_α_hat) — the same loss used in reward fine-tuning, with r(x)=α_hat^T h(x). The relax loss instead minimizes ||E_pθ[h] − h*||² + λ D_KL(p_θ ∥ p_base), with a bias-corrected Monte Carlo estimate of the squared violation. All gradients are score-function estimators: they differentiate the importance weight p_θ(x)/p_θ′(x) evaluated at a detached copy of the para
What would settle it
Replicate the 100-dimensional GMM calibration experiment from Section 3 with the paper's batch size (10^4) and optimization schedule, and measure the constraint violation after 2×10^3 steps; if the majority of the initial constraint violation is not eliminated, the claim that CGM-relax scales to hundreds of constraints fails.
Extended reading notes
Core claim
The central discovery is a reduction: imposing distribution-level constraints on a generative model is equivalent to a KL-constrained search, and its solution has a closed-form exponential-tilt representation. For a base model p_base and statistic h, the unique distribution closest to p_base in KL divergence subject to E_p[h(x)] = h* is p_α*(x) ∝ p_base(x) exp(α*^T h(x)). The paper shows how to estimate α* from a sample of the base model by solving a concave dual problem, and then converts the calibration task into two tractable surrogate losses: a penalty loss on the squared deviation of the expected statistic, and a reward loss that is exactly the objective of reward fine-tuning. The paper
Load-bearing premise
The whole method rests on the score-function gradient estimators being unbiased and low-variance; the paper proves unbiasedness under a square-integrability condition but never measures the estimator's variance on real models, and its own toy experiments show instability for rare events at small batch sizes.
Editorial extensions
If this is right
- Practitioners can fine-tune a single pretrained model to satisfy many expectation constraints at once — proportional class outputs, fairness targets, structural diversity — without designing a bespoke loss for each domain.
- The relax loss scales to hundreds or a thousand simultaneous constraints (the paper demonstrates up to 10^3 in a simulation); the reward loss is limited by the feasibility of the empirical max-entropy dual, which the paper finds fails beyond roughly 30 constraints in its simulations.
- The regularization parameter λ gives an explicit trade-off: lower λ yields tighter constraint satisfaction at the cost of larger KL deviation from the base model, letting users choose the operating point.
- Because the reward loss coincides with reward fine-tuning, the calibration problem inherits the available machinery for preference optimization, broadening the tools that can be brought to bear.
- The approach requires tractable likelihoods of both the model and the base; it does not directly apply to implicit generative models such as GANs or VAEs, a boundary the paper states explicitly.
Reading between the lines
- The failure of the reward route beyond ~30 constraints implies that estimating α* by importance weighting a finite base-model sample inherits the curse of dimensionality; a learned density-ratio or energy-based estimator for the tilt could extend the reward approach to far more constraints.
- The rare-event degradation in the toy GMM (below base probability ≈10⁻³ at batch size 100) points to gradient-estimator variance as the binding constraint, not the loss formulation; larger batches, control variates, or pathwise estimators could push calibration into the rare-tail regime.
- The TarFlow FID increase after calibration suggests that expectation constraints alone do not preserve sample realism; adding a quality penalty or enforcing constraints in a feature space that already encodes realism would be a natural, testable extension.
- If the scaling results hold, calibration becomes a post-hoc safety tool: rather than retraining, one fine-tunes a frozen pretrained model with a handful of expectation constraints, which may be far more data-efficient than full alignment.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. This paper proposes two fine-tuning methods, CGM-relax and CGM-reward, for calibrating a pretrained generative model to expectation constraints. The formal target is the KL projection of the base model onto the set of distributions satisfying E_{p_θ}[h]=h*. CGM-relax replaces the constraint by a quadratic miscalibration penalty plus a λ-weighted KL term; CGM-reward estimates the parameters α of the exponential-tilt maximum-entropy solution and then minimizes reverse KL to that target. The authors derive unbiased loss and score-function gradient estimators, prove consistency and asymptotic normality of the α estimator, and evaluate the methods on a diffusion GMM toy problem, two protein models (Genie2, ESM3-open), a normalizing-flow image model (TarFlow), and TinyStories-33M. The paper reports substantial calibration-error reductions in several settings, while also acknowledging residual error and the restriction to models with tractable likelihoods.
Significance. The core theory is a useful contribution: Appendix B gives careful unbiasedness arguments for the variance-corrected L_viol estimator and the importance-weighted score gradients, and Appendix C connects both losses to maximum entropy, with consistency and rate results for the α estimator. The synthetic experiments usefully isolate the roles of λ, N, and constraint dimension. If the empirical results withstand scrutiny, the paper offers a practical, relatively model-agnostic recipe for likelihood-based generative models. However, the paper’s strongest advertised claims—that “these approaches” handle hundreds of simultaneous constraints and models up to 9B/1B parameters—are not supported by the evidence: CGM-reward fails beyond roughly 30 constraints in the toy setting, and the largest model actually evaluated is 1.4B. The lack of gradient-variance diagnostics also leaves open whether the reported gains are stable. The released code and the careful appendices are notable strengths and increase the value of the work.
major comments (3)
- [Abstract; Section 4, Table 1; Section 3, Fig. 2B] The arXiv abstract claims calibration “across hundreds of simultaneous constraints and models with up to nine billion parameters,” while the main-text abstract and conclusion say “up to one billion.” The largest model actually evaluated is ESM3-open with 1.4B parameters (Table 1). Moreover, the “hundreds of constraints” result is specific to CGM-relax: the toy experiment in Fig. 2B shows that CGM-reward is infeasible for more than about 30 constraints, and the case studies use 99 (CGM-relax) or 15 (CGM-reward) protein constraints, 5 TarFlow constraints, and 8 TinyStories constraints. Please revise the abstract and conclusion to state which method scales and to give the true parameter counts.
- [Section 3, Fig. 2B; Section 2.3; Appendix B.2] The paper does not provide variance diagnostics for the score-function gradient estimators in the real-model runs, and the toy evidence suggests this matters. In Fig. 2B, CGM-reward is outperformed by CGM-relax at high constraint dimension even when α* is fixed to an oracle value, so the failure cannot be attributed solely to the dual infeasibility discussed in Appendix C.2. In the product-GMM toy, the exponential tilt of the base model is itself a product GMM, so the reverse-KL surrogate is reasonably well specified; the remaining gap therefore points to optimization or gradient-variance issues. No seed-to-seed variance is reported for TarFlow (Section 4.2), and Genie2 results are averages over only 3 trials. Please add gradient-noise and run-to-run variability diagnostics for the main experiments, or weaken the claim that CGM-reward reliably scales to high-dimensional settings.
- [Introduction (p. 1); Appendix E.4.3] The introduction states that neither Khalifa et al. (2021) nor Shen et al. (2024) “reduces a majority of calibration error,” but Appendix E.4.3 reports that the Khalifa et al. baseline reduces miscalibration by roughly 85% in the TinyStories experiment. This is an internal inconsistency. If the claim is meant to apply only to the present multi-application evaluation rather than to the cited methods in general, it should be qualified accordingly.
minor comments (5)
- [Section 2.3, Eq. (10)] The notation ∇_θ[p_θ(x_m)f(x_m,θ)] should be expanded explicitly, since f may depend on θ; the current display is terse. In Algorithms 1 and 2, l_m is defined with stop-grad(θ), while in Appendix B.2 the same symbol uses θ; aligning these notations would help readers.
- [Appendix C.3, Proposition C.6] The statement says “lim_{λ→∞}”, but the proof and the surrounding text use λ→0. The limit should be λ→0; as written the theorem contradicts the finite-λ bound that follows it.
- [Table 1] The row for xSpace is difficult to read due to formatting (e.g., “100 (S^{100}_{4096}) 50”). Please clean up the table formatting.
- [Section 2.2] The statement that the parametric optimum p_θ* will be close to p_α* “if the class of generative models is sufficiently expressive” is informal. A short remark clarifying that no quantitative bound is provided would be helpful, since the theory in Appendix C is nonparametric.
- [Section 3, Fig. 2A] The text says performance degrades below π=1e-3, but the figure/axis labels are not fully described in the caption. Consider adding precise evaluation metrics and error bars for the rare-event sweep.
Circularity Check
No significant circularity: relax and reward objectives are independently characterized surrogates, and self-citations are contextual only.
full rationale
The central derivation chain is self-contained and not circular. The calibration problem (Eq. 1) is a well-defined constrained optimization; CGM-relax (Eq. 2) is an explicit penalty surrogate with the miscalibration term Lviol plus λ·D_KL(pθ∥pθbase), and CGM-reward is constructed from the maximum-entropy tilt pα* ∝ pθbase exp(α⊤h), with α estimated by the empirical dual problem (Eq. 7). The key theoretical claims—the form and uniqueness of the maximum-entropy solution (Theorem 2.1 / C.3), the dual characterization (Eq. 6), the consistency of bαN (C.4), and the connection of the relax loss to a tilted distribution with rate O(λ) (C.3)—are proven in Appendices B–C using standard convex duality and external results, not by assuming the paper's own conclusions. The reduction in miscalibration is the optimization objective itself, not a hidden fitted parameter relabeled as a prediction; λ and N are disclosed hyperparameters whose tradeoffs are explicitly studied in Section 3. The rare-event degradation and the restriction to tractable-likelihood models are acknowledged limitations (Section 3 and Section 5), and the lack of variance diagnostics is an empirical robustness concern, not evidence of circularity. Self-citations to the authors' prior work (e.g., Trippe et al. 2023, Watson et al. 2023, Uehara et al. 2024) appear only as application context or related-work background, and they are not load-bearing for the paper's central derivation or its main empirical claims.
Assumptions & free parameters
free parameters (3)
- lambda (relax regularization) =
1e-3 (Genie2), 1e-2 (ESM3), 1e-4 (TarFlow), 0.1 (TinyStories)
- N (base samples for alpha_hat_N) =
1e5 (simulations), 2.5e4 (Genie2 per Appendix E.1; main text says 2.5e3), 5e3 (TarFlow)
- M (batch size) =
1e4 (simulations), 64-512 in case studies
assumptions (6)
- standard math Interior moment condition (Assumption C.1)
- standard math Open domain of log-normalizer (Assumption C.2)
- standard math No linear redundancy in h (Assumption C.4)
- domain assumption Model class is expressive enough to approximate the nonparametric max-entropy solution
- domain assumption Gradient estimator variance is manageable
- domain assumption Tractable likelihoods and densities with respect to the base model
Cite this review
Pith. "Pith review of Calibrating Generative Models to Distributional Constraints." pith.science (2026). https://pith.science/paper/3CLMCF7F
@misc{pith2026251010020,
author = {Pith},
title = {Pith review of: Calibrating Generative Models to Distributional Constraints},
year = {2026},
howpublished = {\url{https://pith.science/paper/3CLMCF7F}},
note = {Machine review of arXiv:2510.10020}
}
read the original abstract
Generative models frequently suffer miscalibration, wherein statistics of the sampling distribution, such as the fraction of generations in a given class, deviate from desired values. We frame calibration as a constrained optimization problem and seek the closest model in Kullback-Leibler divergence satisfying a calibration constraint. To address the intractability of imposing these constraints exactly, we introduce two surrogate objectives for fine-tuning: (1) the relax loss, which replaces the constraint with a miscalibration penalty, and (2) the reward loss, which converts calibration into a reward fine-tuning problem. We demonstrate that these approaches substantially reduce calibration error across hundreds of simultaneous constraints and models with up to nine billion parameters, spanning applications in protein design, image generation, and language modeling.
Figures
Figures from the paper (6 more)
Forward citations
Cited by 3 Pith papers
-
The Reward Was in Your Data All Along: Correcting Flow Matching with Discriminator-Guided RL
DRL trains a discriminator on data versus base-model samples in pretrained representation space and uses its logit as reward in KL-regularized RL, cutting guidance-free FID from 9.38 to 2.62 on SiT and similar gains o...
-
Na\"ive PAINE: Lightweight Text-to-Image Generation Improvement with Prompt Evaluation
A lightweight predictor ranks initial noises by expected human-preference score for a prompt, selecting the best few for diffusion generation and reporting prompt difficulty.
-
Can We Predict The Human Preference For Text-to-Image Content Prior To Generation And Is It Even Useful To Do So?
Exploration of pre-generation prediction of human preference metrics (HPM) from noise seeds in diffusion models to improve output quality with negligible added cost.
Reference graph
Works this paper leans on
-
[1]
write newline
" write newline "" before.all 'output.state := FUNCTION n.dashify 't := "" t empty not t #1 #1 substring "-" = t #1 #2 substring "--" = not "--" * t #2 global.max substring 't := t #1 #1 substring "-" = "-" * t #2 global.max substring 't := while if t #1 #1 substring * t #2 global.max substring 't := if while FUNCTION format.date year duplicate empty "emp...
-
[2]
ABA profile of the legal profession 2024 — demographics, 2024
American Bar Association . ABA profile of the legal profession 2024 — demographics, 2024
2024
-
[3]
Reverse-time diffusion equation models
Brian DO Anderson. Reverse-time diffusion equation models. Stochastic Processes and their Applications, 1982
1982
-
[5]
Lecture notes in convex analysis, nonlinear programming theory, and nonlinear programming algorithms, 2023
Aharon Ben-Tal and Arkadi Nemirovski. Lecture notes in convex analysis, nonlinear programming theory, and nonlinear programming algorithms, 2023
2023
-
[6]
Training diffusion models with reinforcement learning
Kevin Black, Michael Janner, Yilun Du, Ilya Kostrikov, and Sergey Levine. Training diffusion models with reinforcement learning. In International Conference on Learning Representations, 2024
2024
-
[7]
Techniques of variational analysis
Jonathan M Borwein and Qiji J Zhu. Techniques of variational analysis. Springer, 2005
2005
-
[8]
Integrating molecular simulation and experimental data: a B ayesian/maximum entropy reweighting approach
Sandro Bottaro, Tone Bengtsen, and Kresten Lindorff-Larsen. Integrating molecular simulation and experimental data: a B ayesian/maximum entropy reweighting approach. Structural Bioinformatics: Methods and Protocols, 2020
2020
-
[9]
Convex optimization
Stephen P Boyd and Lieven Vandenberghe. Convex optimization. Cambridge University Press, 2004
2004
Show all 82 references
-
[10]
Transformations of W iener integrals under translations
Robert H Cameron and William T Martin. Transformations of W iener integrals under translations. Annals of Mathematics, 1944
1944
-
[11]
Constrained discrete diffusion
Michael Cardei, Jacob K Christopher, Thomas Hartvigsen, Brian R Bartoldson, Bhavya Kailkhura, and Ferdinando Fioretto. Constrained discrete diffusion. arXiv preprint arXiv:2503.09790, 2025
2025
-
[12]
StarGAN v2: Diverse image synthesis for multiple domains
Yunjey Choi, Youngjung Uh, Jaejun Yoo, and Jung-Woo Ha. StarGAN v2: Diverse image synthesis for multiple domains. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, 2020
2020
-
[13]
Deep reinforcement learning from human preferences
Paul F Christiano, Jan Leike, Tom Brown, Miljan Martic, Shane Legg, and Dario Amodei. Deep reinforcement learning from human preferences. Advances in Neural Information Processing Systems, 2017
2017
-
[14]
I-divergence geometry of probability distributions and minimization problems
Imre Csisz \'a r. I-divergence geometry of probability distributions and minimization problems. The Annals of Probability, 1975
1975
-
[15]
Ragotte, Lukas F
Justas Dauparas, Ivan Anishchenko, Nathaniel Bennett, Hua Bai, Robert J. Ragotte, Lukas F. Milles, Basile I. M. Wicky, Alexis Courbet, Rob J. de Haas, Neville Bethel, Philip J. Y. Leung, Timothy F. Huddy, Sam Pellock, Doug Tischer, F. Chan, Brian Koepnick, H. Nguyen, A. Kang, ...
2022
-
[16]
The well-calibrated B ayesian
A Philip Dawid. The well-calibrated B ayesian. Journal of the American Statistical Association, 1982
1982
-
[17]
DEFT : efficient fine-tuning of diffusion models by learning the generalised h -transform
Alexander Denker, Francisco Vargas, Shreyas Padhy, Kieran Didi, Simon Mathis, Riccardo Barbano, Vincent Dutordoir, Emile Mathieu, Urszula Julia Komorowska, and Pietro Lio. DEFT : efficient fine-tuning of diffusion models by learning the generalised h -transform. Advances in Ne...
2024
-
[18]
Diffusion models beat GAN s on image synthesis
Prafulla Dhariwal and Alexander Nichol. Diffusion models beat GAN s on image synthesis. Advances in Neural Information Processing Systems, 2021
2021
-
[19]
Adjoint matching: fine-tuning flow and diffusion generative models with memoryless stochastic optimal control
Carles Domingo-Enrich, Michal Drozdzal, Brian Karrer, and Ricky TQ Chen. Adjoint matching: fine-tuning flow and diffusion generative models with memoryless stochastic optimal control. In International Conference on Learning Representations, 2025
2025
-
[20]
An image is worth 16x16 words: transformers for image recognition at scale
Alexey Dosovitskiy, Lucas Beyer, Alexander Kolesnikov, Dirk Weissenborn, Xiaohua Zhai, Thomas Unterthiner, Mostafa Dehghani, Matthias Minderer, Georg Heigold, Sylvain Gelly, et al. An image is worth 16x16 words: transformers for image recognition at scale. In International Con...
2021
-
[21]
T iny S tories: How small can language models be and still speak coherent E nglish? arXiv preprint arXiv:2305.07759, 2023
Ronen Eldan and Yuanzhi Li. T iny S tories: How small can language models be and still speak coherent E nglish? arXiv preprint arXiv:2305.07759, 2023
2023 arXiv
-
[22]
DPOK : Reinforcement learning for fine-tuning text-to-image diffusion models
Ying Fan, Olivia Watkins, Yuqing Du, Hao Liu, Moonkyung Ryu, Craig Boutilier, Pieter Abbeel, Mohammad Ghavamzadeh, Kangwook Lee, and Kimin Lee. DPOK : Reinforcement learning for fine-tuning text-to-image diffusion models. Advances in Neural Information Processing Systems, 2023
2023
-
[23]
F air D iffusion: Instructing text-to-image generation models on fairness
Felix Friedrich, Manuel Brack, Lukas Struppek, Dominik Hintersdorf, Patrick Schramowski, Sasha Luccioni, and Kristian Kersting. F air D iffusion: Instructing text-to-image generation models on fairness. arXiv preprint arXiv:2302.10893, 2023
2023 arXiv
-
[24]
Bias and fairness in large language models: A survey
Isabel O Gallegos, Ryan A Rossi, Joe Barrow, Md Mehrab Tanjim, Sungchul Kim, Franck Dernoncourt, Tong Yu, Ruiyi Zhang, and Nesreen K Ahmed. Bias and fairness in large language models: A survey. Computational Linguistics, 2024
2024
-
[25]
On transforming a certain class of stochastic processes by absolutely continuous substitution of measures
Igor Vladimirovich Girsanov. On transforming a certain class of stochastic processes by absolutely continuous substitution of measures. Theory of Probability & Its Applications, 1960
1960
-
[26]
Aligning language models with preferences through f-divergence minimization
Dongyoung Go, Tomasz Korbak, Germ \'a n Kruszewski, Jos Rozen, Nahyeon Ryu, and Marc Dymetman. Aligning language models with preferences through f-divergence minimization. In International Conference on Machine Learning, 2023
2023
-
[27]
Generative AI and Biology (GenBio)
Sven Gutjahr, Riccardo De Santi, Luca Schaufelberger, Kjell Jorner, and Andreas Krause. Constrained molecular generation via sequential flow model fine-tuning. In “Generative AI and Biology (GenBio)” Workshop the International Conference on Machine Learning, 2025
2025
-
[28]
Simulating 500 million years of evolution with a language model
Thomas Hayes, Roshan Rao, Halil Akin, Nicholas J Sofroniew, Deniz Oktay, Zeming Lin, Robert Verkuil, Vincent Q Tran, Jonathan Deaton, Marius Wiggert, Rohil Badkundri, Irhum Shafkat, Jun Gong, Alexander Derry, Raul S Molina, Neil Thomas, Yousuf A Khan, Chetan Mishra, Carolyn Ki...
2025
-
[29]
Deep Generative Models and Downstream Applications
Jonathan Ho and Tim Salimans. Classifier-free diffusion guidance. “Deep Generative Models and Downstream Applications” Workshop at the Advances in Neural Information Processing Systems Conference, 2021
2021
-
[30]
Denoising diffusion probabilistic models
Jonathan Ho, Ajay Jain, and Pieter Abbeel. Denoising diffusion probabilistic models. Advances in Neural Information Processing Systems, 2020
2020
-
[31]
Generative models for graph-based protein design
John Ingraham, Vikas Garg, Regina Barzilay, and Tommi Jaakkola. Generative models for graph-based protein design. Advances in Neural Information Processing Systems, 2019
2019
-
[32]
Information theory and statistical mechanics
Edwin T Jaynes. Information theory and statistical mechanics. Physical Review, 1957
1957
-
[33]
Constrained diffusion models via dual training
Shervin Khalafi, Dongsheng Ding, and Alejandro Ribeiro. Constrained diffusion models via dual training. Advances in Neural Information Processing Systems, 2024
2024
-
[34]
A distributional approach to controlled text generation
Muhammad Khalifa, Hady Elsahar, and Marc Dymetman. A distributional approach to controlled text generation. In International Conference on Learning Representations, 2021
2021
-
[35]
Adam: A method for stochastic optimization
Diederik P Kingma and Jimmy Ba. Adam: A method for stochastic optimization. In International Conference on Learning Representations, 2015
2015
-
[36]
An information-theoretic alternative to generalized method of moments estimation
Yuichi Kitamura and Michael Stutzer. An information-theoretic alternative to generalized method of moments estimation. Econometrica: Journal of the Econometric Society, 1997
1997
-
[37]
u rgen K \
J \"u rgen K \"o finger, Lukas S. Stelzl, Klaus Reuter, C \'e sar Allande, Katrin Reichel, and Gerhard Hummer. Efficient ensemble refinement by reweighting. Journal of Chemical Theory and Computation, 2019
2019
-
[38]
Deep RL Meets Structured Prediction
Wouter Kool, Herke van Hoof, and Max Welling. Buy 4 REINFORCE samples, get a baseline for free! In “Deep RL Meets Structured Prediction” Workshop at the International Conference on Learning Representations , 2019
2019
-
[39]
Information Theory and Statistics
Solomon Kullback. Information Theory and Statistics. John Wiley & Sons, 1959
1959
-
[40]
B iotite: a unifying open source computational biology framework in P ython
Patrick Kunzmann and Kay Hamacher. B iotite: a unifying open source computational biology framework in P ython. BMC Bioinformatics, 2018
2018
-
[41]
A perspective on the use of control variables to increase the efficiency of M onte C arlo simulations
Stephen S Lavenberg and Peter D Welch. A perspective on the use of control variables to increase the efficiency of M onte C arlo simulations. Management Science, 1981
1981
-
[42]
Sarah Lewis, Tim Hempel, José Jiménez-Luna, Michael Gastegger, Yu Xie, Andrew Y. K. Foong, Victor García Satorras, Osama Abdin, Bastiaan S. Veeling, Iryna Zaporozhets, Yaoyi Chen, Soojung Yang, Adam E. Foster, Arne Schneuing, Jigyasa Nigam, Federico Barbero, Vincent Stimper, A...
2025
-
[43]
Out of many, one: designing and scaffolding proteins at the scale of the structural universe with Genie 2
Yeqing Lin, Minji Lee, Zhao Zhang, and Mohammed AlQuraishi. Out of many, one: designing and scaffolding proteins at the scale of the structural universe with Genie 2 . arXiv preprint arXiv:2405.15489, 2024 a
2024 arXiv
-
[44]
Nguyen, and Mohammed AlQuraishi
Yeqing Lin, Haewon C. Nguyen, and Mohammed AlQuraishi. In-silico protein design pipeline . github.com/aqlaboratory/insilico_design_pipeline, 2024 b
2024
-
[45]
Evolutionary-scale prediction of atomic-level protein structure with a language model
Zeming Lin, Halil Akin, Roshan Rao, Brian Hie, Zhongkai Zhu, Wenting Lu, Nikita Smetanin, Robert Verkuil, Ori Kabeli, Yaniv Shmueli, Allan dos Santos Costa, Maryam Fazel-Zarandi, Tom Sercu, Salvatore Candido, and Alexander Rives. Evolutionary-scale prediction of atomic-level p...
2023
-
[46]
SGDR : Stochastic gradient descent with warm restarts
Ilya Loshchilov and Frank Hutter. SGDR : Stochastic gradient descent with warm restarts. arXiv preprint arXiv:1608.03983, 2016
2016 arXiv
-
[47]
Assessing generative model coverage of protein structures with SHAPES
Tianyu Lu, Melissa Liu, Yilin Chen, Jinho Kim, and Po-Ssu Huang. Assessing generative model coverage of protein structures with SHAPES . bioRxiv, 2025
2025
-
[48]
Shintaro Minami. PyDSSP . github.com/ShintaroMinami/PyDSSP, 2023
2023
-
[49]
M onte C arlo gradient estimation in machine learning
Shakir Mohamed, Mihaela Rosca, Michael Figurnov, and Andriy Mnih. M onte C arlo gradient estimation in machine learning. Journal of Machine Learning Research, 2020
2020
-
[50]
Scalable end-to-end autonomous vehicle testing via rare-event simulation
Matthew O'Kelly, Aman Sinha, Hongseok Namkoong, Russ Tedrake, and John C Duchi. Scalable end-to-end autonomous vehicle testing via rare-event simulation. Advances in Neural Information Processing Systems, 2018
2018
-
[51]
Stochastic Differential Equations: An Introduction with Applications
Bernt Oksendal. Stochastic Differential Equations: An Introduction with Applications. Springer Science & Business Media, 2013
2013
-
[52]
Empirical likelihood
Art B Owen. Empirical likelihood. Chapman and Hall/CRC, 2001
2001
-
[53]
gender-guesser
Israel Saeta P \'e rez, David Arcos, and LeadRatings contributors. gender-guesser. github.com/lead-ratings/gender-guesser, 2016
2016
-
[54]
Probabilistic outputs for support vector machines and comparisons to regularized likelihood methods
John Platt. Probabilistic outputs for support vector machines and comparisons to regularized likelihood methods. In Advances in Large Margin Classifiers, 1999
1999
-
[55]
Empirical likelihood and general estimating equations
Jin Qin and Jerry Lawless. Empirical likelihood and general estimating equations. The Annals of Statistics, 1994
1994
-
[56]
Class-balancing diffusion models
Yiming Qin, Huangjie Zheng, Jiangchao Yao, Mingyuan Zhou, and Ya Zhang. Class-balancing diffusion models. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 2023
2023
-
[57]
Direct preference optimization: Your language model is secretly a reward model
Rafael Rafailov, Archit Sharma, Eric Mitchell, Christopher D Manning, Stefano Ermon, and Chelsea Finn. Direct preference optimization: Your language model is secretly a reward model. Advances in Neural Information Processing Systems, 2023
2023
-
[58]
Black box variational inference
Rajesh Ranganath, Sean Gerrish, and David Blei. Black box variational inference. In Artificial Intelligence and Statistics. PMLR, 2014
2014
-
[59]
Variational inference with normalizing flows
Danilo Rezende and Shakir Mohamed. Variational inference with normalizing flows. In International Conference on Machine Learning, 2015
2015
-
[60]
Convex Analysis
R Tyrrell Rockafellar. Convex Analysis. Princeton University Press, 1970
1970
-
[61]
SAXS ensemble refinement of ESCRT-III CHMP3 conformational transitions
Bartosz R \'o \.z ycki, Young C Kim, and Gerhard Hummer. SAXS ensemble refinement of ESCRT-III CHMP3 conformational transitions. Structure, 2011
2011
-
[62]
Designing DNA with tunable regulatory activity using score-entropy discrete diffusion
Anirban Sarkar, Yijie Kang, Nirali Somia, Pablo Mantilla, Jessica Lu Zhou, Masayuki Nagai, Ziqi Tang, Chris Zhao, and Peter Koo. Designing DNA with tunable regulatory activity using score-entropy discrete diffusion. bioRxiv, 2024
2024
-
[63]
A tutorial on conformal prediction
Glenn Shafer and Vladimir Vovk. A tutorial on conformal prediction. Journal of Machine Learning Research, 2008
2008
-
[64]
Finetuning text-to-image diffusion models for fairness
Xudong Shen, Chao Du, Tianyu Pang, Min Lin, Yongkang Wong, and Mohan Kankanhalli. Finetuning text-to-image diffusion models for fairness. In International Conference on Learning Representations, 2024
2024
-
[65]
Waman, Paul Ashford, Harry M
Ian Sillitoe, Nicola Bordin, Natalie Dawson, Vaishali P. Waman, Paul Ashford, Harry M. Scholes, Camilla S. M. Pang, Laurel Woodridge, Clemens Rauer, Neeladri Sen, Mahnaz Abbasian, Sean Le Cornu , Su Datt Lam, Karel Berka, Ivana Huta r ov \'a Varekov \'a , Radka Svobodova, Jon ...
2021
-
[66]
Score-based generative modeling through stochastic differential equations
Yang Song, Jascha Sohl-Dickstein, Diederik P Kingma, Abhishek Kumar, Stefano Ermon, and Ben Poole. Score-based generative modeling through stochastic differential equations. In International Conference on Learning Representations, 2021
2021
-
[67]
Density estimation by dual ascent of the log-likelihood
Esteban G Tabak and Eric Vanden-Eijnden. Density estimation by dual ascent of the log-likelihood. Communications in Mathematical Sciences, 2010
2010
-
[68]
Fine-tuning of diffusion models via stochastic control: entropy regularization and beyond
Wenpin Tang. Fine-tuning of diffusion models via stochastic control: entropy regularization and beyond. arXiv preprint arXiv:2403.06279, 2024
2024
-
[69]
Diffusion probabilistic modeling of protein backbones in 3D for the motif-scaffolding problem
Brian L Trippe, Jason Yim, Doug Tischer, David Baker, Tamara Broderick, Regina Barzilay, and Tommi Jaakkola. Diffusion probabilistic modeling of protein backbones in 3D for the motif-scaffolding problem. In International Conference on Learning Representations, 2023
2023
-
[70]
Fine-tuning of continuous-time diffusion models as entropy-regularized control
Masatoshi Uehara, Yulai Zhao, Kevin Black, Ehsan Hajiramezanali, Gabriele Scalia, Nathaniel Lee Diamant, Alex M Tseng, Tommaso Biancalani, and Sergey Levine. Fine-tuning of continuous-time diffusion models as entropy-regularized control. arXiv preprint arXiv:2402.15194, 2024
2024 arXiv
-
[71]
Asymptotic statistics
Aad W Van der Vaart. Asymptotic statistics. Cambridge University Press, 2000
2000
-
[72]
Graphical models, exponential families, and variational inference
Martin J Wainwright and Michael I Jordan. Graphical models, exponential families, and variational inference. Foundations and Trends in Machine Learning, 2008
2008
-
[73]
Diffusion model alignment using direct preference optimization
Bram Wallace, Meihua Dang, Rafael Rafailov, Linqi Zhou, Aaron Lou, Senthil Purushwalkam, Stefano Ermon, Caiming Xiong, Shafiq Joty, and Nikhil Naik. Diffusion model alignment using direct preference optimization. In Conference on Computer Vision and Pattern Recognition. IEEE C...
2024
-
[74]
Watson, David Juergens, Nathaniel R
Joseph L. Watson, David Juergens, Nathaniel R. Bennett, Brian L. Trippe, Jason Yim, Helen E. Eisenach, Woody Ahern, Andrew J. Borst, Robert J. Ragotte, Lukas F. Milles, Basile I. M. Wicky, Nikita Hanikel, Samuel J. Pellock, Alexis Courbet, William Sheffler, Jue Wang, Preetham ...
2023
-
[75]
Simple statistical gradient-following algorithms for connectionist reinforcement learning
Ronald J Williams. Simple statistical gradient-following algorithms for connectionist reinforcement learning. Machine Learning, 1992
1992
-
[76]
Enforcing statistical constraints in generative adversarial networks for modeling chaotic dynamical systems
Jin-Long Wu, Karthik Kashinath, Adrian Albert, Dragos Chirila, and Heng Xiao. Enforcing statistical constraints in generative adversarial networks for modeling chaotic dynamical systems. Journal of Computational Physics, 2020
2020
-
[77]
Guide your favorite protein sequence generative model
Junhao Xiong, Hunter Nisonoff, Maria Lukarska, Ishan Gaur, Luke M Oltrogge, David F Savage, and Jennifer Listgarten. Guide your favorite protein sequence generative model. arXiv preprint arXiv:2505.04823, 2025
2025
-
[78]
SE(3) diffusion model with application to protein backbone generation
Jason Yim, Brian L Trippe, Valentin De Bortoli, Emile Mathieu, Arnaud Doucet, Regina Barzilay, and Tommi Jaakkola. SE(3) diffusion model with application to protein backbone generation. In International Conference on Machine Learning, 2023
2023
-
[79]
Normalizing flows are capable generative models
Shuangfei Zhai, Ruixiang Zhang, Preetum Nakkiran, David Berthelot, Jiatao Gu, Huangjie Zheng, Tianrong Chen, Miguel \'A ngel Bautista, Navdeep Jaitly, and Joshua M Susskind. Normalizing flows are capable generative models. In International Conference on Machine Learning, 2025
2025
-
[80]
Brookes, Akosua Busia, Ana Carneiro, Clara Fannjiang, Galina Popova, David Shin, Kevin C
Danqing Zhu, David H. Brookes, Akosua Busia, Ana Carneiro, Clara Fannjiang, Galina Popova, David Shin, Kevin C. Donohue, Li F. Lin, Zachary M. Miller, Evan R. Williams, Edward F. Chang, Tomasz J. Nowakowski, Jennifer Listgarten, and David V. Schaffer. Optimal trade-off control...
2024
-
[81]
@esa (Ref
\@ifxundefined[1] #1\@undefined \@firstoftwo \@secondoftwo \@ifnum[1] #1 \@firstoftwo \@secondoftwo \@ifx[1] #1 \@firstoftwo \@secondoftwo [2] @ #1 \@temptokena #2 #1 @ \@temptokena \@ifclassloaded agu2001 natbib The agu2001 class already includes natbib coding, so you should ...
-
[82]
\@lbibitem[] @bibitem@first@sw\@secondoftwo \@lbibitem[#1]#2 \@extra@b@citeb \@ifundefined br@#2\@extra@b@citeb \@namedef br@#2 \@nameuse br@#2\@extra@b@citeb \@ifundefined b@#2\@extra@b@citeb @num @parse #2 @tmp #1 NAT@b@open@#2 NAT@b@shut@#2 \@ifnum @merge>\@ne @bibitem@firs...
-
[83]
Generative AI and Biology (GenBio)
@open @close @open @close and [1] URL: #1 \@ifundefined chapter * \@mkboth \@ifxundefined @sectionbib * \@mkboth * \@mkboth\@gobbletwo \@ifclassloaded amsart * \@ifclassloaded amsbook * \@ifxundefined @heading @heading NAT@ctr thebibliography [1] @ \@biblabel @NAT@ctr \@bibset...
1982 arXiv
Reviewed August 4, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.