Learn Before
Definition
Formal Definition of Neural Message Passing
During each message-passing iteration in a Graph Neural Network (GNN), a hidden embedding corresponding to each node is updated according to information aggregated from ’s graph neighborhood . The message-passing update can be expressed by: h^{(k+1)}_u = UPDATE^{(k)}(h^{(k)}_u, AGGREGATE^{(k)}({h^{(k)}_v, forall v in N(u)})) or alternatively as: h^{(k+1)}_u = UPDATE^{(k)}(h^{(k)}u, m^{(k)}{N(u)}) where and are arbitrary differentiable functions (neural networks) and is the "message" that is aggregated from 's graph neighborhood .
0
1
Updated 2026-06-14
Tags
Data Science