Blog - page 4
Understand Graph Attention Network
By Hao Zhang, Mufei Li, Minjie Wang, Zheng Zhang, in blog
From Graph Convolutional Network (GCN), we learned that combining local graph structure and node-level features yields good performance on node classification task. However, the way GCN aggregates is structure-dependent, which may hurt its generalizability. Graph Attention Network proposes an alternative way by weighting neighbor features with feature dependent and structure free normalization, in the style of attention. The goal of this tutorial: (1) Explain what is Graph Attention Network. (2) Demonstrate how it can be implemented in DGL. (3) Understand the attentions learnt. (4) Introduce to inductive learning.
Read more17 February
Batched Graph Classification with DGL
By Mufei Li, Minjie Wang, in blog
Graph classification is an important problem with applications across many fields -- bioinformatics, chemoinformatics, social network analysis, urban computing and cyber-security. Applying graph neural networks to this problem has been a popular approach recently. This tutorial is a demonstration for: (1) batching multiple graphs of variable size and shape with DGL (2) training a graph neural network for a simple graph classification task
Read more25 January


