LGSIMLSep 4, 2021

Node Feature Kernels Increase Graph Convolutional Network Robustness

arXiv:2109.01785v39 citationsHas Code
Originality Incremental advance
AI Analysis

This addresses robustness issues in GCNs for graph-based machine learning tasks, offering a practical solution to enhance reliability in noisy or adversarial environments, though it is an incremental improvement over existing methods.

The paper tackles the problem of Graph Convolutional Networks (GCNs) being vulnerable to perturbations in graph structure, showing that such perturbations can cause GCNs to perform worse than Multi-Layer Perceptrons on node features alone. It demonstrates that adding a node feature kernel to the message passing step significantly improves GCN robustness, with empirical validation on six real datasets.

The robustness of the much-used Graph Convolutional Networks (GCNs) to perturbations of their input is becoming a topic of increasing importance. In this paper, the random GCN is introduced for which a random matrix theory analysis is possible. This analysis suggests that if the graph is sufficiently perturbed, or in the extreme case random, then the GCN fails to benefit from the node features. It is furthermore observed that enhancing the message passing step in GCNs by adding the node feature kernel to the adjacency matrix of the graph structure solves this problem. An empirical study of a GCN utilised for node classification on six real datasets further confirms the theoretical findings and demonstrates that perturbations of the graph structure can result in GCNs performing significantly worse than Multi-Layer Perceptrons run on the node features alone. In practice, adding a node feature kernel to the message passing of perturbed graphs results in a significant improvement of the GCN's performance, thereby rendering it more robust to graph perturbations. Our code is publicly available at:https://github.com/ChangminWu/RobustGCN.

Code Implementations1 repo
Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes