8. Graph Neural Networks — Deep Learning for Molecules and ...
dmol.pub › dl › gnnGraph neural networks are a category of deep neural networks that have graphs as inputs. One of the early GNNs is the Kipf & Welling GCN. The input to the GCN is the node feature vector and the adjacency matrix, and returns the updated node feature vector. The GCN is permutation invariant because it averages over the neighbors.
A Gentle Introduction to Graph Neural Networks
https://distill.pub/2021/gnn-intro02.09.2021 · A graph is the input, and each component (V,E,U) gets updated by a MLP to produce a new graph. Each function subscript indicates a separate function for a different graph attribute at the n-th layer of a GNN model. As is common with neural networks modules or layers, we can stack these GNN layers together.