multi-layer graph perceptron

Data
Multi-Layer Graph Perceptron

A(n -layer) multi-layer graph perceptron (MGLP) is simply several graph perceptrons in sequence. This forms a function with input x0=x, and output y=xL.

Where at each layer, $$x_{\ell} = \sigma(u_{\ell}) = \sigma\left( \sum_{k=0}^{K-1} h_{\ell,k} S^k x_{\ell-1} \right), ; 1 \leq \ell \leq L$$
We call x the -layer embedding.

For conciseness, we define H={hk,|0kK1,1L} and represent our MLGP as $$y = \Phi(x, S; H)$$

Illustration

2025-02-05_graph-2.png

Mentions

File
Graph Neural Networks
2025-02-05 graphs lecture 5