LGMLJun 26, 2020

Policy-GNN: Aggregation Optimization for Graph Neural Networks

arXiv:2006.15097v1106 citations
Originality Incremental advance
AI Analysis

This work addresses a domain-specific challenge in graph neural networks by optimizing aggregation strategies for better node representation, though it appears incremental as it builds on existing GNN frameworks.

The paper tackles the problem of optimizing aggregation iterations in graph neural networks (GNNs) by proposing Policy-GNN, a meta-policy framework that adaptively determines the number of aggregations per node using reinforcement learning, resulting in significant performance improvements over state-of-the-art methods on three benchmark datasets.

Graph data are pervasive in many real-world applications. Recently, increasing attention has been paid on graph neural networks (GNNs), which aim to model the local graph structures and capture the hierarchical patterns by aggregating the information from neighbors with stackable network modules. Motivated by the observation that different nodes often require different iterations of aggregation to fully capture the structural information, in this paper, we propose to explicitly sample diverse iterations of aggregation for different nodes to boost the performance of GNNs. It is a challenging task to develop an effective aggregation strategy for each node, given complex graphs and sparse features. Moreover, it is not straightforward to derive an efficient algorithm since we need to feed the sampled nodes into different number of network layers. To address the above challenges, we propose Policy-GNN, a meta-policy framework that models the sampling procedure and message passing of GNNs into a combined learning process. Specifically, Policy-GNN uses a meta-policy to adaptively determine the number of aggregations for each node. The meta-policy is trained with deep reinforcement learning (RL) by exploiting the feedback from the model. We further introduce parameter sharing and a buffer mechanism to boost the training efficiency. Experimental results on three real-world benchmark datasets suggest that Policy-GNN significantly outperforms the state-of-the-art alternatives, showing the promise in aggregation optimization for GNNs.

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