MaxCutPool: differentiable feature-aware Maxcut for pooling in graph neural networks
Carlo Abate, Filippo Maria Bianchi
TL;DR
The paper tackles the challenge of graph pooling in neural networks for heterophilic and attributed graphs by formulating a differentiable MAXCUT-based partitioning method called MaxCutPool. It integrates a ScoreNet to produce high-frequency node scores, selects a subset of supernodes via top-$K$ scoring, and uses a nearest-neighbor assignment to form a sparse, trainable pooled graph; an auxiliary loss $\mathcal{L}_{\text{cut}}$ guides the partition toward cutting more edges. The approach bridges scoring-based and dense pooling by employing consistent CON/RED operations and offers an expressive variant (-E) that propagates features through all nodes via an assignment matrix. Empirically, MaxCutPool achieves competitive or superior performance on graph and node classification tasks, especially in heterophilic settings, and demonstrates favorable time/memory complexity compared to soft-clustering pooling methods. The work also provides a synthetic heterophilic graph dataset to benchmark pooling methods and discusses potential benefits of pretraining auxiliary losses for more general graph pooling strategies.
Abstract
We propose a novel approach to compute the MAXCUT in attributed graphs, i.e., graphs with features associated with nodes and edges. Our approach works well on any kind of graph topology and can find solutions that jointly optimize the MAXCUT along with other objectives. Based on the obtained MAXCUT partition, we implement a hierarchical graph pooling layer for Graph Neural Networks, which is sparse, trainable end-to-end, and particularly suitable for downstream tasks on heterophilic graphs.
