GO-Diff
Project description
GO-Diff
GO-Diff: Data-free and amortized global structure optimization a generative diffusion framework for atomistic structure search. It couples a diffusion model with an energy/force calculator and iteratively refines the model through Boltzmann-weighted training, adaptive temperature annealing, and an adaptive replay buffer.
Installation
Install from pypi
pip install go-diff
(Optional) Install of MLIPs for running GO-Diff
E.g.
pip install mace-torch
Quick Start
import numpy as np
from ase.build import fcc111, surface
from mace.calculators import mace_mp
from agedi import AtomsGraph, create_diffusion
from agedi.diffusion import ForcefieldGuidanceConfig
from go_diff import GODiff, MinEnergyFilter
from go_diff.controllers import SampleController, BufferController, TemperatureSchedule, MomentumConsensusStop
from go_diff.noisers import WeightedConfinedCellPositions
##### SYSTEM #####
formula = "Pt"
template = surface('Pt', (1,2,2), 5, vacuum=8.0)
template.positions[:, 2] -= template.positions[:, 2].min()
confinement_above_zmax = np.array([0.0, 4.0])
confinement = confinement_above_zmax + template.positions[:, 2].max()
##### CALCULATOR #####
from mace.calculators import mace_mp
calc = mace_mp(model="medium", dispersion=False, default_dtype="float32", device='cuda')
#### DIFFUSION MODEL #####
diffusion = create_diffusion(noisers=(WeightedConfinedCellPositions(),), force_field=True)
#### GO-DIFF #####
godiff = GODiff(
calculator=calc,
diffusion=diffusion,
temperature_schedule=TemperatureSchedule(fast=0.5, slow=0.9),
sample_controller=SampleController(initial_N=16, target_ess=8),
buffer_controller=BufferController(initial_buffer_size=16, max_buffer_size=96, adaption_rate=0.2),
training_controller=MomentumConsensusStop(min_steps=100, patience=250, drop_factor=0.9),
sample_config={
"template": template,
"formula": formula,
"confinement": confinement,
"ff_guidance": ForcefieldGuidanceConfig(guidance=1.0,)
},
dataset_config={
"mask": "MaskFixed",
"confinement": confinement,
"regressor_data": "all_data", # use all data for training the regressor, not just the data in the buffer
},
trainer_config={
"name": name
},
min_E=min_E,
valid_structure_filters=[MinEnergyFilter(-200)],
)
#### RUN GO-Diff #####
godiff.run(max_iterations=20)
See scripts/*.py for the full scripts.
Key components
| Class / module | Description |
|---|---|
GODiff |
Main optimisation loop (sample → evaluate → buffer → train) |
TemperatureSchedule |
Adaptive annealing; fast / slow cooling factors based on heat capacity |
SampleController |
Stops sampling when the Effective Sample Size (ESS) reaches a target |
MomentumConsensusStop |
Stops training when gradient–momentum agreement drops |
AdaptiveRefinementStop |
Stop criterion based on split-batch gradient agreement EMA |
WeightedPositions |
Boltzmann-weighted position noiser for the diffusion model |
GODiffLogger |
TensorBoard logger (energies, ESS, timing, analysis figures) |
Running the tests
<!-- CLONE package -->
git clone https://github.com/nronne/go-diff.git
cd go-diff
<!-- INSTALL with pip including test extras-->
pip install ".[test]"
<!-- RUN pytest -->
pytest
Citation
If you use GO-Diff please cite:
Ronne, Nikolaj, Tejs Vegge and Arghya Bhowmik. "GO-Diff: Data-free and amortized global structure optimization" arXiv:2510.13448. Preprint, arXiv, October 15, 2025. https://arxiv.org/abs/2510.13448
Ronne, Nikolaj, and Bjork Hammer. "Atomistic Generative Diffusion for Materials Modeling." arXiv:2507.18314. Preprint, arXiv, July 24, 2025. https://arxiv.org/abs/2507.18314
If studying surface-supported systems please also cite:
Ronne, Nikolaj, Alan Aspuru-Guzik, and Bjork Hammer. "Generative Diffusion Model for Surface Structure Discovery." Physical Review B 110, no. 23 (2024): 235427. https://doi.org/10.1103/PhysRevB.110.235427
Optionally, if using any AGOX functionality please cite:
Christiansen, Mads-Peter V., Nikolaj Ronne, and Bjork Hammer. "Atomistic Global Optimization X: A Python Package for Optimization of Atomistic Structures." The Journal of Chemical Physics 157, no. 5 (2022): 054701. https://doi.org/10.1063/5.0094165
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file go_diff-1.1.0.tar.gz.
File metadata
- Download URL: go_diff-1.1.0.tar.gz
- Upload date:
- Size: 197.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
42f8e040c9c869ff423747bd57961c1e153e58fdb44e4fc0773e7e47a11fb03a
|
|
| MD5 |
afca79c900db67ff42ffa9ae1256e4f1
|
|
| BLAKE2b-256 |
e1fa03651194f3351a8e26f31056ce233af1a1120250f3744240c196d02b73a5
|
Provenance
The following attestation bundles were made for go_diff-1.1.0.tar.gz:
Publisher:
publish.yml on nronne/go-diff
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
go_diff-1.1.0.tar.gz -
Subject digest:
42f8e040c9c869ff423747bd57961c1e153e58fdb44e4fc0773e7e47a11fb03a - Sigstore transparency entry: 1709423872
- Sigstore integration time:
-
Permalink:
nronne/go-diff@cc8d46cd2183b5db26fa2159f53eb6f8055079ff -
Branch / Tag:
refs/heads/main - Owner: https://github.com/nronne
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cc8d46cd2183b5db26fa2159f53eb6f8055079ff -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file go_diff-1.1.0-py3-none-any.whl.
File metadata
- Download URL: go_diff-1.1.0-py3-none-any.whl
- Upload date:
- Size: 38.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3e84942aded15f500c761eb37acb1beac73450035f89b30faeb9c0f7d6023bdd
|
|
| MD5 |
8d0d10de06fc7e06ae15d0f1ff03f117
|
|
| BLAKE2b-256 |
f4f9b2a2e55cf08e9ee99b55e8fea017bb7fde09c161bb77d54469d8f3de1468
|
Provenance
The following attestation bundles were made for go_diff-1.1.0-py3-none-any.whl:
Publisher:
publish.yml on nronne/go-diff
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
go_diff-1.1.0-py3-none-any.whl -
Subject digest:
3e84942aded15f500c761eb37acb1beac73450035f89b30faeb9c0f7d6023bdd - Sigstore transparency entry: 1709424012
- Sigstore integration time:
-
Permalink:
nronne/go-diff@cc8d46cd2183b5db26fa2159f53eb6f8055079ff -
Branch / Tag:
refs/heads/main - Owner: https://github.com/nronne
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cc8d46cd2183b5db26fa2159f53eb6f8055079ff -
Trigger Event:
workflow_dispatch
-
Statement type: