Skip to content

Question about Message Construction #102

Answered by davkovacs
lsnty5190 asked this question in Q&A
Discussion options

You must be logged in to vote

Hi! Thanks for your question!

The A basis is constructed slightly differently in the 1st and 2nd layers, but indeed that is an important component of MACE. The scatter sum operation is part of the interaction block. In the first layer:

message = scatter_sum(

In the subsequent layer(s):

message = scatter_sum(

The B basis is probably best thought of as being part of the update. It is formed on the nodes by taking symmetric tensor products of the A functions. You can find the operations in the product block of MACE, which indeed does not contain a scatter sum:

Replies: 2 comments 6 replies

Comment options

You must be logged in to vote
2 replies
@lsnty5190
Comment options

@davkovacs
Comment options

Answer selected by lsnty5190
Comment options

You must be logged in to vote
4 replies
@ilyes319
Comment options

@davkovacs
Comment options

@lsnty5190
Comment options

@davkovacs
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants
Converted from issue

This discussion was converted from issue #101 on April 18, 2023 08:38.