菜单

关于 🐙 GitHub
arXiv 提交日期: 2026-07-07
📄 Abstract - Graph Convolutional Attention: A Spectral Perspective on Graph Denoising and Diffusion

Denoising graphs is a fundamental problem in graph learning and the core operation of graph diffusion models. Attention-based architectures like graph transformers have recently shown promise in denoising graphs. However, our principled understanding of attention-based graph denoising remains limited, making it unclear whether standard attention is the right mechanism for this task. Here we show that, under a denoising objective, linear attention is suboptimal and can only learn an average spectral denoising filter over the training distribution. This creates a fundamental limitation as graphs often vary spectrally across the distribution. To overcome this limitation, we introduce Spectral Attention, which directly utilizes the input graph spectrum and provably outperforms linear attention by a margin governed by the spectral diversity of the distribution. We then derive Graph Convolutional Attention (GCA), a practical and permutation-equivariant realization of this idea that implements spectral denoising through graph-filtered queries and keys. For stochastic block models, GCA provably matches the idealized Spectral Attention mechanism. We further show that the softmax operation, that follows the attention, provides additional denoising by approximately projecting noisy eigenvectors onto the clean eigenspace. Empirically, replacing linear attention with GCA consistently improves graph denoising and diffusion on synthetic and real datasets, with gains strongly correlated with spectral diversity. In DiGress, GCA matches standard graph-transformer performance without computing expensive structural features, and when combined with the recently proposed PEARL positional encodings, avoids explicit eigendecomposition computations resulting in faster inference without degrading quality. The code can be found here: this http URL

顶级标签: machine learning theory
详细标签: graph denoising graph diffusion attention mechanism spectral analysis 或 搜索:

图卷积注意力:图去噪与扩散的频谱视角 / Graph Convolutional Attention: A Spectral Perspective on Graph Denoising and Diffusion


1️⃣ 一句话总结

本文指出,在线性注意力机制下进行图去噪只能学到平均的频谱滤波器,难以适应图中多样的频谱特征;为此,作者提出了一种名为图卷积注意力(GCA)的新机制,通过利用输入图的频谱信息进行滤波,显著提升了去噪和扩散模型的性能,并在理论和实验上证明了其优势。

源自 arXiv: 2607.06546