LGOct 30, 2020

Labeling Trick: A Theory of Using Graph Neural Networks for Multi-Node Representation Learning

arXiv:2010.16103v5244 citations
Originality Incremental advance
AI Analysis

This work provides a theoretical foundation for multi-node representation learning in graph neural networks, addressing a key bottleneck for tasks like link prediction, though it is incremental as it unifies and explains existing methods.

The paper identifies a fundamental limitation in using graph neural networks (GNNs) for multi-node representation learning, where directly aggregating single-node representations fails to capture dependencies between nodes, and proposes the 'labeling trick' as a unified theory that enables GNNs to learn expressive joint representations for node sets, with experiments on link prediction verifying the approach.

In this paper, we provide a theory of using graph neural networks (GNNs) for multi-node representation learning (where we are interested in learning a representation for a set of more than one node, such as link). We know that GNN is designed to learn single-node representations. When we want to learn a node set representation involving multiple nodes, a common practice in previous works is to directly aggregate the single-node representations obtained by a GNN into a joint node set representation. In this paper, we show a fundamental constraint of such an approach, namely the inability to capture the dependence between nodes in the node set, and argue that directly aggregating individual node representations does not lead to an effective joint representation for multiple nodes. Then, we notice that a few previous successful works for multi-node representation learning, including SEAL, Distance Encoding, and ID-GNN, all used node labeling. These methods first label nodes in the graph according to their relationships with the target node set before applying a GNN. Then, the node representations obtained in the labeled graph are aggregated into a node set representation. By investigating their inner mechanisms, we unify these node labeling techniques into a single and most general form -- labeling trick. We prove that with labeling trick a sufficiently expressive GNN learns the most expressive node set representations, thus in principle solves any joint learning tasks over node sets. Experiments on one important two-node representation learning task, link prediction, verified our theory. Our work explains the superior performance of previous node-labeling-based methods, and establishes a theoretical foundation of using GNNs for multi-node representation learning.

Code Implementations2 repos
Foundations

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

Your Notes