LGAIJan 29, 2022

SMGRL: Scalable Multi-resolution Graph Representation Learning

arXiv:2201.12670v32 citations
Originality Incremental advance
AI Analysis

This addresses scalability and dependency issues in graph learning for large-scale applications, though it is incremental as it builds on existing GCN models.

The paper tackles the problem of capturing long-range dependencies in graph convolutional networks (GCNs) without over-smoothing or high computational costs, resulting in improved classification accuracy with reduced training expenses.

Graph convolutional networks (GCNs) allow us to learn topologically-aware node embeddings, which can be useful for classification or link prediction. However, they are unable to capture long-range dependencies between nodes without adding additional layers -- which in turn leads to over-smoothing and increased time and space complexity. Further, the complex dependencies between nodes make mini-batching challenging, limiting their applicability to large graphs. We propose a Scalable Multi-resolution Graph Representation Learning (SMGRL) framework that enables us to learn multi-resolution node embeddings efficiently. Our framework is model-agnostic and can be applied to any existing GCN model. We dramatically reduce training costs by training only on a reduced-dimension coarsening of the original graph, then exploit self-similarity to apply the resulting algorithm at multiple resolutions. The resulting multi-resolution embeddings can be aggregated to yield high-quality node embeddings that capture both long- and short-range dependencies. Our experiments show that this leads to improved classification accuracy, without incurring high computational costs.

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