SOTAVerified

Combining Label Propagation and Simple Models Out-performs Graph Neural Networks

2020-10-27ICLR 2021Code Available1· sign in to hype

Qian Huang, Horace He, Abhay Singh, Ser-Nam Lim, Austin R. Benson

Code Available — Be the first to reproduce this paper.

Reproduce

Code

Abstract

Graph Neural Networks (GNNs) are the predominant technique for learning over graphs. However, there is relatively little understanding of why GNNs are successful in practice and whether they are necessary for good performance. Here, we show that for many standard transductive node classification benchmarks, we can exceed or match the performance of state-of-the-art GNNs by combining shallow models that ignore the graph structure with two simple post-processing steps that exploit correlation in the label structure: (i) an "error correlation" that spreads residual errors in training data to correct errors in test data and (ii) a "prediction correlation" that smooths the predictions on the test data. We call this overall procedure Correct and Smooth (C&S), and the post-processing steps are implemented via simple modifications to standard label propagation techniques from early graph-based semi-supervised learning methods. Our approach exceeds or nearly matches the performance of state-of-the-art GNNs on a wide variety of benchmarks, with just a small fraction of the parameters and orders of magnitude faster runtime. For instance, we exceed the best known GNN performance on the OGB-Products dataset with 137 times fewer parameters and greater than 100 times less training time. The performance of our methods highlights how directly incorporating label information into the learning algorithm (as was done in traditional techniques) yields easy and substantial performance gains. We can also incorporate our techniques into big GNN models, providing modest gains. Our code for the OGB results is at https://github.com/Chillee/CorrectAndSmooth.

Tasks

Benchmark Results

DatasetModelMetricClaimedVerifiedStatus
ogbn-arxivGAT + C&SNumber of params1,567,000Unverified
ogbn-arxivGAT(norm.adj.)+label reuse+C&SNumber of params1,441,580Unverified
ogbn-arxivGCN_res + C&S_v2Number of params155,824Unverified
ogbn-arxivMLP + C&SNumber of params175,656Unverified
ogbn-arxivGCN_res + C&SNumber of params155,824Unverified
ogbn-arxivLinear + C&SNumber of params15,400Unverified
ogbn-arxivPlain Linear + C&SNumber of params5,160Unverified
ogbn-productsSpec-MLP-Wide + C&SNumber of params406,063Unverified
ogbn-productsMLP + C&SNumber of params96,247Unverified
ogbn-productsLinear + C&SNumber of params10,763Unverified
ogbn-productsPlain Linear + C&SNumber of params4,747Unverified
ogbn-productsGAT w/NS + C&SNumber of params753,622Unverified
ogbn-productsGraphSAGE w/NS + C&SNumber of params207,919Unverified

Reproductions