2019

Sparse Graph Attention Networks

Ye, Yang, Ji, Shihao

Understand

Graph Neural Networks (GNNs) have proved to be an effective representation learning framework for graph-structured data, and have achieved state-of-the-art performance on many practical predictive tasks, such as node classification, link prediction and graph classification.

  • Among the variants of GNNs, Graph Attention Networks (GATs) learn to assign dense attention coefficients over all neighbors of a node for feature aggregation, and improve the performance of many graph learning tasks.
  • However, real-world graphs are often very large and noisy, and GATs are prone to overfitting if not regularized properly.
  • Even worse, the local aggregation mechanism of GATs may fail on disassortative graphs, where nodes within local neighborhood provide more noise than useful information for feature aggregation.

Reading the bibliography…