REVIEW 4 major objections 5 minor 43 references
GeoAda: Efficiently Finetune Geometric Diffusion Models with Equivariant Adapters
T0 review · 4 major / 5 minor · reviewed 2026-08-06 · deepseek-v4-flash
Pith's one-line read GeoAda shows that a frozen geometric diffusion model can be steered to new conditioning tasks by training only small SE(3)-equivariant adapter modules, which preserve the model's symmetries and its original task performance.
desk verdict A solid, well-empirically-supported equivariant adapter method for geometric diffusion models that deserves peer review, with a sketchy proof and presentation issues that are fixable. 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 carrying object is the equivariant adapter block, a four-stage module: a coupling operator $f$ that injects the control into the noised input without breaking its geometric structure, a trainable copy $\epsilon_{\theta'}$ of a subset of the frozen denoiser layers (picking the first layer of every $K$ consecutive layers proved best), a decoupling operator $g$ that selects the predicted components belonging to the original input, and an equivariant zero-convolution $z_\phi(\{x_i\},\{h_i\}) = (\phi_x (x_i - \bar{x}), \phi_h h_i)$ whose learnable weights start at zero. The zero initialization makes the adapter output vanish exactly at initialization, so the pretrained score is untouched at the start of fine-tuning while the gradients through $\phi_x$ and $\phi_h$ are nonzero, letting the control path learn smoothly; the center-of-mass subtraction $\bar{x}$ makes the output translation-invariant, and rotation equivariance is carried by the geometric feature transformations.
What would settle it
Fine-tune GeoAda on CHARGED PARTICLES with the conditioning length raised from 10 to 50 frames instead of 10 to 15: if the frozen backbone errors on the longer input, ignores the added frames, or shows no gain over the 10-frame baseline, then the claim that frame control adapts without architectural modification is falsified.
Extended reading notes
Core claim
The paper's central claim is that a pretrained geometric diffusion model can be redirected to new controlled-generation tasks without touching its weights: the frozen denoiser $\epsilon_\theta$ is supplemented by an equivariant adapter $s_{\theta',\phi}$ whose output is added to the original score at sampling time. The adapter encodes the control $C$ through a coupling operator $f$ — node-wise addition of a lifted global vector for global type control, graph union for subgraph control, and frame concatenation for frame control — processes it with a trainable copy $\epsilon_{\theta'}$ of selected pretrained layers, extracts the relevant nodes or frames with a decoupling operator $g$, and scales the result with an equivariant zero-initialized convolution $z_\phi$. Proposition 4.1 states that $g \circ \epsilon_\theta \circ f$ is $\mathrm{SE}(3)$-equivariant for every control type, so the adapted score inherits the invariant marginal of Eq. (1). On CHARGED PARTICLES, five MD17 molecules, five CMU Mocap actions, and QM9/GEOM-Drugs to CrossDocked2020 pocket-conditioned generation, GeoAda matches or outperforms full fine-tuning on the downstream metric while the pretraining-task metrics stay at their original values, where full fine-tuning, partial fine-tuning, and prompt baselines degrade or collapse.
Load-bearing premise
The frame-control setup assumes the frozen pretrained denoiser can accept a trajectory whose number of conditioned frames changes from 10 at pretraining to 15 at fine-tuning, since the coupling operator just concatenates the extra frames and the paper never shows how the backbone's time embeddings or attention layers handle the new input dimension.
Editorial extensions
If this is right
- Adapting to a new control with GeoAda costs about half the parameters of full fine-tuning (roughly 2.7 MB tunable on the tested datasets), which makes transfer practical for small downstream datasets.
- The pretraining task survives adaptation: GeoAda keeps pretrain metrics at their original values on CHARGED PARTICLES and MD17, while full fine-tuning, partial fine-tuning, and prompt baselines degrade or collapse.
- Training is punctuated by a 'sudden convergence': loss and validation MSE drop abruptly around steps 4500–4700, with ADE and FDE falling by 68.3% and 73.4%, so early-stopping rules based on gradual improvement can be misleading.
- The choice of which pretrained layers to copy matters: selecting the first layer of every $K$ consecutive layers outperforms choosing only early or only late layers under the same parameter budget, making layer selection itself a tunable design choice.
Reading between the lines
- The adapter recipe should port to other equivariant generative paradigms such as score-based SDEs or equivariant flow matching, since the proof only relies on the frozen network being $\mathrm{SE}(3)$-equivariant; the paper does not claim this.
- If implicit regularization is the mechanism, the gap between GeoAda and full fine-tuning should widen as downstream data shrink; a controlled data-amount sweep would test this directly.
- The three handcrafted coupling operators are the least general component: controls with high-dimensional or structured semantics (for example, text embeddings) would likely need learned coupling, a direction the paper's limitation section leaves open.
- Frame control is the fragile case: increasing the conditioning length from 10 to 15 frames changes the backbone's input dimension, and the paper never verifies that the frozen architecture truly handles variable-length inputs.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes GeoAda, a parameter-efficient adapter framework for fine-tuning frozen SE(3)-equivariant geometric diffusion models. Control signals of three types (global type, subgraph, frame) are injected through coupling operators, processed by trainable copies of selected pretrained layers, and projected back through decoupling operators followed by equivariant zero-initialized convolutions. The authors claim that this design preserves SE(3)-equivariance, avoids architectural modification of the pretrained backbone, mitigates overfitting and catastrophic forgetting, and achieves state-of-the-art downstream performance across particle dynamics (CHARGED PARTICLES), molecular dynamics (MD17), human motion prediction (CMU Mocap), and pocket-conditioned molecule generation (CrossDocked2020). A proof of equivariance is given in the appendix, and ablations study the number of adapter blocks, zero convolution, and trainable copies.
Significance. If the technical gaps identified below are resolved, GeoAda would be a useful contribution to geometric diffusion fine-tuning. The framework adapts the ControlNet recipe to SE(3)-equivariant diffusion models, and the zero-convolution device is a sensible way to protect the pretrained score at initialization. The empirical evaluation is broad, includes standard deviations, reports parameter counts, and contains ablations that support the importance of the zero-convolution and trainable-copy design choices. The paper also documents an interesting sudden-convergence phenomenon. However, the central 'plug-and-play, no architectural modification' claim is currently under-supported for two of the three control types, and the equivariance proof is more asserted than derived.
major comments (4)
- [§4.2, Eq. (5); §5.1.1] The frame-control coupling in Eq. (5) concatenates the noised trajectory x_i^[T] with the control frames x_i^[\tilde T] along the temporal axis, producing an input with T+\tilde T frames. Section 5.1.1 changes the number of conditioned frames from 10 at pretraining to 15 at finetuning (and from 0 to 10 in the unconditional setting). The paper never states whether the EGTN backbone and its copied layers are variable-length in the temporal dimension. If the first linear layer or temporal attention has weights tied to T, the frozen model cannot consume the concatenated input, and the claim of adaptation 'without modifying the original model architecture' fails for this control type. Please specify the backbone's length handling, or describe any projection or resizing applied to the copied layers; the equivariance proof in Appendix 7 does not address this domain-compatibility issue.
- [§5.3, Table 5] The QM9-pretrained GeoAda model is trained with atom types (H, C, N, O, F), while CrossDocked2020 is processed with eight atom types (H, C, N, O, F, P, S, Cl). The paper does not explain how a frozen denoiser whose node-feature vocabulary was learned over five types can consume eight-dimensional one-hot vectors. If a new embedding or projection is introduced at finetuning, that is an architectural modification that must be described and justified; if the backbone is type-agnostic, that property should be stated explicitly. As written, the subgraph-control experiments do not establish the plug-and-play claim for the QM9 checkpoint.
- [Appendix 7, Prop. 4.1] The proof of Proposition 4.1 is a sequence of assertions rather than a derivation. It does not define an SE(3) action on each control type (notably the global-type vector \tilde c, which is invariant under the group action), and it states without proof that the coupling operators 'respect the SE(3) structure.' A rigorous proof should verify f(h·G, h·C)=h·f(G,C) and g(h·G'')=h·g(G'') for each of the three controls, and should also specify how the equivariant zero-convolution in Eq. (6) behaves under translations in the centered representation used by the backbone.
- [§5.3, Tables 5–7] The abstract and §4.4 claim that GeoAda 'consistently matches or outperforms full fine-tuning baselines' and avoids catastrophic forgetting. For subgraph control, however, the comparison in Tables 5–7 is against task-specific methods trained from scratch on CrossDocked2020 (liGAN, GraphBP, AR, Pocket2Mol, TargetDiff); no Full FT, PARTIAL-k, prompt, or adapter ablation is reported for this control type. The subgraph experiment therefore supports competitiveness against specialized generators but not the paper's central fine-tuning claim, and should be supplemented or the claim narrowed.
minor comments (5)
- [Abstract and Section 1] There are several typos and grammar issues, including 'Frame Fontrol', 'freezed', and 'sythetic accessibility'; the manuscript should be proofread.
- [Table 1] Table 1 contains malformed entries such as '3924 3950' and isolated 'nan' cells; please reformat the table so that missing values and standard deviations are presented consistently.
- [Table 7] The ring-size row for size 7 reports '23.5' without a percent sign, unlike the other entries in the table.
- [Appendix 8.4.1] The notation for W_{t,s} and γ is confusing: W_{t,s} is said to be in R^N while γ is a vector over T, and the construction of the weights w(t,s) should be defined with explicit dimensions.
- [Section 5, Baselines] The PARTIAL-k baseline is cited as [10, 14, 43], but reference [43] appears to be a colorization paper rather than a partial fine-tuning method; please check the citation.
Circularity Check
No significant circularity: GeoAda's equivariance guarantee is a direct compositional proof and its empirical claims are benchmarked externally.
full rationale
GeoAda's central theoretical claim (Prop. 4.1) is that g ∘ ϵθ ∘ f inherits SE(3)-equivariance from an equivariant frozen denoiser; the appendix proof verifies the transformation behavior of each explicit coupling/decoupling operator (Eqs. 3–5) and of the zero-convolution (Eq. 6), so the conclusion follows by composition rather than being assumed as the conclusion. The adapter parameters are optimized with the standard denoising objective (Eq. 7) on external datasets (Charged Particles, MD17, CMU Mocap, CrossDocked2020), so the reported state-of-the-art numbers are measured against held-out benchmarks, not encoded by construction. The method does rely on the authors' own GeoTDM/EGTN backbone and cites several prior works from the same group, but those citations supply the pretrained model and its equivariance as an input assumption; they do not by themselves establish that GeoAda works, and no uniqueness claim is imported from them. The frame-control concern (Eq. 5 concatenating T + T̃ frames while pretraining used 10 and finetuning uses 15 frames) is a legitimate correctness/verification gap about backbone variable-length support, but it is not a circularity: the downstream error is still computed against ground-truth trajectories rather than derived from the adapter's own definition. No fitted parameter is renamed as a prediction, and no load-bearing premise reduces to a self-citation chain.
Assumptions & free parameters
free parameters (3)
- Number of adapter blocks B =
3
- Layer-selection stride K =
not specified
- Zero-convolution scalars phi_x, phi_h =
initialized to 0, learned
assumptions (4)
- domain assumption The pretrained denoiser is SE(3)-equivariant
- ad hoc to paper The coupling and decoupling operators are SE(3)-equivariant for global type, subgraph, and frame controls
- domain assumption The frozen backbone can process variable-length frame inputs
- domain assumption A subset of the pretrained layers, when copied and stacked with zero convolution, remains equivariant and composable
Cite this review
Pith. "Pith review of GeoAda: Efficiently Finetune Geometric Diffusion Models with Equivariant Adapters." pith.science (2026). https://pith.science/paper/ZI5A5VT3
@misc{pith2026250702085,
author = {Pith},
title = {Pith review of: GeoAda: Efficiently Finetune Geometric Diffusion Models with Equivariant Adapters},
year = {2026},
howpublished = {\url{https://pith.science/paper/ZI5A5VT3}},
note = {Machine review of arXiv:2507.02085}
}
read the original abstract
Geometric diffusion models have shown remarkable success in molecular dynamics and structure generation. However, efficiently fine-tuning them for downstream tasks with varying geometric controls remains underexplored. In this work, we propose an SE(3)-equivariant adapter framework ( GeoAda) that enables flexible and parameter-efficient fine-tuning for controlled generative tasks without modifying the original model architecture. GeoAda introduces a structured adapter design: control signals are first encoded through coupling operators, then processed by a trainable copy of selected pretrained model layers, and finally projected back via decoupling operators followed by an equivariant zero-initialized convolution. By fine-tuning only these lightweight adapter modules, GeoAda preserves the model's geometric consistency while mitigating overfitting and catastrophic forgetting. We theoretically prove that the proposed adapters maintain SE(3)-equivariance, ensuring that the geometric inductive biases of the pretrained diffusion model remain intact during adaptation. We demonstrate the wide applicability of GeoAda across diverse geometric control types, including frame control, global control, subgraph control, and a broad range of application domains such as particle dynamics, molecular dynamics, human motion prediction, and molecule generation. Empirical results show that GeoAda achieves state-of-the-art fine-tuning performance while preserving original task accuracy, whereas other baselines experience significant performance degradation due to overfitting and catastrophic forgetting.
Figures
Figures from the paper (3 more)
Reference graph
Works this paper leans on
-
[1]
Geom, energy-annotated molecular confor- mations for property prediction and molecular generation
Simon Axelrod and Rafael Gomez-Bombarelli. Geom, energy-annotated molecular confor- mations for property prediction and molecular generation. Scientific Data, 9(1):185, 2022. 8
work page 2022
-
[2]
Sdfusion: Multimodal 3d shape completion, reconstruction, and generation, 2023
Yen-Chi Cheng, Hsin-Ying Lee, Sergey Tulyakov, Alexander Schwing, and Liangyan Gui. Sdfusion: Multimodal 3d shape completion, reconstruction, and generation, 2023. 2
work page 2023
-
[3]
Machine learning of accurate energy-conserving molecular force fields
Stefan Chmiela, Alexandre Tkatchenko, Huziel E Sauceda, Igor Poltavsky, Kristof T Schütt, and Klaus-Robert Müller. Machine learning of accurate energy-conserving molecular force fields. Science advances, 3(5):e1603015, 2017. 1, 7
work page 2017
-
[4]
Equijump: Protein dynamics simulation via so(3)-equivariant stochastic interpolants, 2024
Allan dos Santos Costa, Ilan Mitnikov, Franco Pellegrini, Ameya Daigavane, Mario Geiger, Zhonglin Cao, Karsten Kreis, Tess Smidt, Emine Kucukbenli, and Joseph Jacobson. Equijump: Protein dynamics simulation via so(3)-equivariant stochastic interpolants, 2024. 3
work page 2024
-
[5]
Universal prompt tun- ing for graph neural networks
Taoran Fang, Yunchao Zhang, Yang Yang, Chunping Wang, and Lei Chen. Universal prompt tun- ing for graph neural networks. Advances in Neural Information Processing Systems, 36:52464– 52489, 2023. 3, 6, 7, 8, 16, 17, 18
work page 2023
-
[6]
Paul G Francoeur, Tomohide Masuda, Jocelyn Sunseri, Andrew Jia, Richard B Iovanisci, Ian Snyder, and David R Koes. Three-dimensional convolutional neural networks and a cross- docked data set for structure-based drug design. Journal of chemical information and modeling, 60(9):4200–4215, 2020. 8
work page 2020
-
[7]
3d equivariant diffusion for target-aware molecule generation and affinity prediction
Jiaqi Guan, Wesley Wei Qian, Xingang Peng, Yufeng Su, Jian Peng, and Jianzhu Ma. 3d equivariant diffusion for target-aware molecule generation and affinity prediction. In The Eleventh International Conference on Learning Representations, 2023. 1, 4
work page 2023
-
[8]
Jiaqi Guan, Wesley Wei Qian, Xingang Peng, Yufeng Su, Jian Peng, and Jianzhu Ma. 3d equivariant diffusion for target-aware molecule generation and affinity prediction.arXiv preprint arXiv:2303.03543, 2023. 8, 9
arXiv 2023
Show all 43 references
-
[9]
Geometric trajectory diffusion models
Jiaqi Han, Minkai Xu, Aaron Lou, Haotian Ye, and Stefano Ermon. Geometric trajectory diffusion models. arXiv preprint arXiv:2410.13027, 2024. 1, 3
2024 arXiv
-
[10]
Masked autoencoders are scalable vision learners
Kaiming He, Xinlei Chen, Saining Xie, Yanghao Li, Piotr Dollár, and Ross Girshick. Masked autoencoders are scalable vision learners. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 16000–16009, 2022. 6, 7, 8, 16, 17, 18
2022
-
[11]
Denoising diffusion probabilistic models
Jonathan Ho, Ajay Jain, and Pieter Abbeel. Denoising diffusion probabilistic models. Advances in neural information processing systems, 33:6840–6851, 2020. 3, 6, 13
2020
-
[12]
Equivariant diffusion for molecule generation in 3d
Emiel Hoogeboom, Vıctor Garcia Satorras, Clément Vignac, and Max Welling. Equivariant diffusion for molecule generation in 3d. In International conference on machine learning, pages 8867–8887. PMLR, 2022. 1, 3, 4
2022
-
[13]
Physics-informed regularization for domain-agnostic dynamical system modeling
Zijie Huang, Wanjia Zhao, Jingdong Gao, Ziniu Hu, Xiao Luo, Yadi Cao, Yuanzhou Chen, Yizhou Sun, and Wei Wang. Physics-informed regularization for domain-agnostic dynamical system modeling. arXiv preprint arXiv:2410.06366, 2024. 1
-
[14]
Visual prompt tuning
Menglin Jia, Luming Tang, Bor-Chun Chen, Claire Cardie, Serge Belongie, Bharath Hariharan, and Ser-Nam Lim. Visual prompt tuning. In European conference on computer vision, pages 709–727. Springer, 2022. 6
2022
-
[15]
Neural relational inference for interacting systems
Thomas Kipf, Ethan Fetaya, Kuan-Chieh Wang, Max Welling, and Richard Zemel. Neural relational inference for interacting systems. arXiv preprint arXiv:1802.04687, 2018. 1, 6
2018 arXiv
-
[16]
Adaptergnn: Parameter-efficient fine-tuning improves generalization in gnns, 2023
Shengrui Li, Xueting Han, and Jing Bai. Adaptergnn: Parameter-efficient fine-tuning improves generalization in gnns, 2023. 3
2023
-
[17]
Generating 3d molecules for target protein binding
Meng Liu, Youzhi Luo, Kanji Uchino, Koji Maruhashi, and Shuiwang Ji. Generating 3d molecules for target protein binding. In International Conference on Machine Learning, 2022. 9 10
2022
-
[18]
Graphprompt: Unifying pre-training and downstream tasks for graph neural networks, 2023
Zemin Liu, Xingtong Yu, Yuan Fang, and Xinming Zhang. Graphprompt: Unifying pre-training and downstream tasks for graph neural networks, 2023. 3
2023
-
[19]
A 3d generative model for structure-based drug design
Shitong Luo, Jiaqi Guan, Jianzhu Ma, and Jian Peng. A 3d generative model for structure-based drug design. Advances in Neural Information Processing Systems, 34, 2021. 9
2021
-
[20]
Text-guided diffusion model for 3d molecule generation
Yanchen Luo, Junfeng Fang, Sihang Li, Zhiyuan Liu, Jiancan Wu, An Zhang, Wenjie Du, and Xiang Wang. Text-guided diffusion model for 3d molecule generation. arXiv preprint arXiv:2410.03803, 2024. 4
2024 arXiv
-
[21]
Geometry-complete diffusion for 3d molecule generation and optimization, 2024
Alex Morehead and Jianlin Cheng. Geometry-complete diffusion for 3d molecule generation and optimization, 2024. 1, 2
2024
-
[22]
Pocket2mol: Efficient molecular sampling based on 3d protein pockets
Xingang Peng, Shitong Luo, Jiaqi Guan, Qi Xie, Jian Peng, and Jianzhu Ma. Pocket2mol: Efficient molecular sampling based on 3d protein pockets. arXiv preprint arXiv:2205.07249,
-
[23]
Generating 3D molecules condi- tional on receptor binding sites with deep generative models
Matthew Ragoza, Tomohide Masuda, and David Ryan Koes. Generating 3D molecules condi- tional on receptor binding sites with deep generative models. Chem Sci, 13:2701–2713, Feb
-
[24]
Quantum chemistry structures and properties of 134 kilo molecules
Raghunathan Ramakrishnan, Pavlo O Dral, Matthias Rupp, and O Anatole V on Lilienfeld. Quantum chemistry structures and properties of 134 kilo molecules. Scientific data, 1(1):1–7,
-
[25]
Diffusion-edfs: Bi-equivariant denoising generative modeling on se(3) for visual robotic manipulation, 2023
Hyunwoo Ryu, Jiwoo Kim, Hyunseok An, Junwoo Chang, Joohwan Seo, Taehan Kim, Yubin Kim, Chaewon Hwang, Jongeun Choi, and Roberto Horowitz. Diffusion-edfs: Bi-equivariant denoising generative modeling on se(3) for visual robotic manipulation, 2023. 1, 2
2023
-
[26]
E(n) equivariant graph neural networks
Victor Garcia Satorras, Emiel Hoogeboom, and Max Welling. E(n) equivariant graph neural networks. arXiv preprint arXiv:2102.09844, 2021. 1, 6
2021 arXiv
-
[27]
Equivariant message passing for the prediction of tensorial properties and molecular spectra
Kristof Schütt, Oliver Unke, and Michael Gastegger. Equivariant message passing for the prediction of tensorial properties and molecular spectra. In International Conference on Machine Learning, pages 9377–9388. PMLR, 2021. 7
2021
-
[28]
Learning gradient fields for molecular conformation generation
Chence Shi, Shitong Luo, Minkai Xu, and Jian Tang. Learning gradient fields for molecular conformation generation. In International conference on machine learning, pages 9558–9568. PMLR, 2021. 7
2021
-
[29]
Generative modeling by estimating gradients of the data distribution
Yang Song and Stefano Ermon. Generative modeling by estimating gradients of the data distribution. Advances in neural information processing systems, 32, 2019. 3
2019
-
[30]
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. 3
2021
-
[31]
A bound for the error in the normal approximation to the distribution of a sum of dependent random variables
Charles Stein. A bound for the error in the normal approximation to the distribution of a sum of dependent random variables. In Proceedings of the sixth Berkeley symposium on mathematical statistics and probability, volume 2: Probability theory, volume 6, pages 583–603. Univer...
1972
-
[32]
Gppt: Graph pre-training and prompt tuning to generalize graph neural networks
Mingchen Sun, Kaixiong Zhou, Xin He, Ying Wang, and Xin Wang. Gppt: Graph pre-training and prompt tuning to generalize graph neural networks. In Proceedings of the 28th ACM SIGKDD Conference on Knowledge Discovery and Data Mining, KDD ’22, page 1717–1727, New York, NY , USA, 2...
2022
-
[33]
Fine-tuning of continuous-time diffusion models as entropy-regularized control, 2024
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, 2024. 3
2024
-
[34]
Se(3)-diffusionfields: Learning smooth cost functions for joint grasp and motion optimization through diffusion, 2023
Julen Urain, Niklas Funk, Jan Peters, and Georgia Chalvatzaki. Se(3)-diffusionfields: Learning smooth cost functions for joint grasp and motion optimization through diffusion, 2023. 1, 2 11
2023
-
[35]
Diffusion model alignment using direct preference optimization, 2023
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, 2023. 3
2023
-
[36]
In-context learning unlocked for diffusion models
Zhendong Wang, Yifan Jiang, Yadong Lu, yelong shen, Pengcheng He, Weizhu Chen, Zhangyang Wang, and Mingyuan Zhou. In-context learning unlocked for diffusion models. In Thirty-seventh Conference on Neural Information Processing Systems, 2023. 1, 3
2023
-
[37]
Geometric- facilitated denoising diffusion model for 3d molecule generation
Can Xu, Haosen Wang, Weigang Wang, Pengfei Zheng, and Hongyang Chen. Geometric- facilitated denoising diffusion model for 3d molecule generation. In Proceedings of the AAAI Conference on Artificial Intelligence, 2024. 1, 2
2024
-
[38]
Eqmotion: Equivariant multi-agent motion prediction with invariant interaction reasoning
Chenxin Xu, Robby T Tan, Yuhong Tan, Siheng Chen, Yu Guang Wang, Xinchao Wang, and Yanfeng Wang. Eqmotion: Equivariant multi-agent motion prediction with invariant interaction reasoning. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, page...
2023
-
[39]
Geometric latent diffusion models for 3d molecule generation
Minkai Xu, Alexander Powers, Ron Dror, Stefano Ermon, and Jure Leskovec. Geometric latent diffusion models for 3d molecule generation. In International Conference on Machine Learning. PMLR, 2023. 1, 2
2023
-
[40]
Geodiff: A geometric diffusion model for molecular conformation generation
Minkai Xu, Lantao Yu, Yang Song, Chence Shi, Stefano Ermon, and Jian Tang. Geodiff: A geometric diffusion model for molecular conformation generation. In International Conference on Learning Representations, 2022. 1, 2, 3
2022
-
[41]
Socialvae: Human trajectory prediction using timewise latents
Pei Xu, Jean-Bernard Hayet, and Ioannis Karamouzas. Socialvae: Human trajectory prediction using timewise latents. In European Conference on Computer Vision, pages 511–528. Springer,
-
[42]
Adding conditional control to text-to-image diffusion models
Lvmin Zhang, Anyi Rao, and Maneesh Agrawala. Adding conditional control to text-to-image diffusion models. In Proceedings of the IEEE/CVF international conference on computer vision, pages 3836–3847, 2023. 1, 2, 3, 5, 9
2023
-
[43]
Colorful image colorization
Richard Zhang, Phillip Isola, and Alexei A Efros. Colorful image colorization. In Computer Vision–ECCV 2016: 14th European Conference, Amsterdam, The Netherlands, October 11-14, 2016, Proceedings, Part III 14, pages 649–666. Springer, 2016. 5, 6 12 Appendix 7 Proof Below is th...
2016
Reviewed August 6, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.