Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
A reworking of the 'Diffusion MACE' architecture.
The main insight is that the
node attributes
should probably NOT be the values ofsigma
;sigma
is often close to zero, so a linear layer without bias will just send everything to zero.Here we create "augmented" node attributes by mixing the attributes coming from the one-hot encoded atom types and a MLP (with biases) applied to
sigma
.This new architecture can overfit a single example of the score with fixed values of

sigma
:From
experiments/diffusion_mace_harmonic_data/overfit_diffusion_mace.py
(Different experiments have sigma = 0.001, 0.1, 0.5, and some fiddling with number of MLP layers and channels)
This requires much fewer parameters than the previous monstrosities because the tensorproduct is only on
0e
x0e
channels.Finding the right parameters is very 'fiddly'. There's much exploration to be done to see if this can learn what we want.