π€ AI Summary
To address the limited representation capability of low-frequency signals in graph community detection, this paper proposes InfraredGPβa training-free spectral graph neural network. Its core innovation is a novel negative correction mechanism that extends the frequency response range of the graph Laplacian operator beyond the conventional [0, 2] interval, thereby uncovering the strong discriminative power of ultra-low-frequency (< 0) signals for community structure. InfraredGP generates separable node embeddings via low-pass filtering, random input initialization, and a single forward pass, then integrates BIRCH for efficient clustering. Evaluated on both static and streaming graph partitioning tasks, InfraredGP achieves 16β23Γ speedup over baseline methods while maintaining comparable partition quality. The implementation is publicly available.
π Abstract
Graph partitioning (GP), a.k.a. community detection, is a classic problem that divides nodes of a graph into densely-connected blocks. From a perspective of graph signal processing, we find that graph Laplacian with a negative correction can derive graph frequencies beyond the conventional range $[0, 2]$. To explore whether the low-frequency information beyond this range can encode more informative properties about community structures, we propose InfraredGP. It (
omannumeral1) adopts a spectral GNN as its backbone combined with low-pass filters and a negative correction mechanism, (
omannumeral2) only feeds random inputs to this backbone, (
omannumeral3) derives graph embeddings via one feed-forward propagation (FFP) without any training, and (
omannumeral4) obtains feasible GP results by feeding the derived embeddings to BIRCH. Surprisingly, our experiments demonstrate that based solely on the negative correction mechanism that amplifies low-frequency information beyond $[0, 2]$, InfraredGP can derive distinguishable embeddings for some standard clustering modules (e.g., BIRCH) and obtain high-quality results for GP without any training. Following the IEEE HPEC Graph Challenge benchmark, we evaluate InfraredGP for both static and streaming GP, where InfraredGP can achieve much better efficiency (e.g., 16x-23x faster) and competitive quality over various baselines. We have made our code public at https://github.com/KuroginQin/InfraredGP