Formula

Message Passing with Self-loops

A simplification of neural message passing omits the explicit update step, and instead simply adds a self-loop: hu(k)=AGGREGATE({hv(k1),vN(u){u}})\mathbf{h}_u^{(k)}=\text{AGGREGATE}(\{\mathbf{h}_v^{(k-1)},\forall v\in \mathcal{N}(u)\cup\{u\}\}) where hu(k)\mathbf{h}_u^{(k)} is the kthk^{th} hidden layer of node uu. In the case of a basic Graph Neural Network (GNN), it can be written as the following graph-level update: H(t)=σ((A+I)H(t1)W(t))\mathbf{H}^{(t)}=\sigma((\mathbf{A}+\mathbf{I})\mathbf{H}^{(t-1)}\mathbf{W}^{(t)}) where H(t)\mathbf{H}^{(t)} is the graph-level hidden layer representation.

0

1

Updated 2026-06-14

Tags

Deep Learning (in Machine learning)

Data Science

Computing Sciences