-
I was trying to implement EGNN as in http://arxiv.org/abs/2102.09844. 𝐦𝑖𝑗=𝜙𝑒(𝐡𝑖,𝐡𝑗,‖𝑟𝑖−𝑟𝑗‖,𝑎𝑖𝑗) Updating 𝐦𝑖𝑗 is trivial, I was wondering if Shifting the 𝑟𝑖 step to |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
In general, returning multiple outputs within |
Beta Was this translation helpful? Give feedback.
In general, returning multiple outputs within
message
passing should be supported, see here for a simple test case. Note thataggregate(inputs, ...)
will now hold a tuple, such that you may need to overrideaggregate
as well.