TAAM:Inductive Graph-Class Incremental Learning with Task-Aware Adaptive Modulation

cs.LG 2026-02-09 51 次浏览
Jingtao Liu Xinming Zhang

AI 总览摘要

深度解读

术语表

Neural Synapse Modulator (NSM, 神经突触调制器)

一种轻量级模块,用于调节GNN内部表示,任务专属,提升适应性。技术上采用FiLM参数调制机制。

在TAAM中,NSM为每个任务训练,调制共享GNN骨架的输出。

Anchored Multi-hop Propagation (AMP, 锚定多跳传播)

一种基于多跳扩散的任务原型生成方法,利用邻域信息增强任务识别能力。技术上借鉴Personalized PageRank。

AMP用于生成任务原型,支持无标签任务识别。

Simple Graph Convolution (SGC, 简单图卷积)

一种简化的图卷积模型,去除中间非线性,分为邻域聚合和特征变换两个阶段。

作为TAAM的骨架,用于稳定特征提取。

FiLM (Feature-wise Linear Modulation, 特征线性调制)

一种调制机制,通过线性参数调节神经网络特征,增强模型表达能力。

NSM利用FiLM参数调制GNN输出。

Inductive Graph Learning (归纳图学习)

在训练和测试数据完全不同的图结构上进行学习,强调模型的泛化能力。

TAAM在归纳场景下验证其效果。

开放问题 这项研究留下的未解疑问

  • 1 如何在极端异构或稀疏图中保持任务识别的鲁棒性仍需探索,AMP在复杂场景中的表现尚未充分验证。未来应研究多模态信息融合以增强任务推断能力。

应用场景

近期应用

动态社交网络分析

利用TAAM实现用户社区演变的实时监测,保护用户隐私,减少存储需求,适合大规模社交平台。

远期愿景

智能知识图谱维护

通过TAAM实现知识图谱的持续更新与维护,支持自动化知识推理,推动智能问答和推荐系统的升级。

原文摘要

Graph Continual Learning (GCL) aims to solve the challenges of streaming graph data. However, current methods often depend on replay-based strategies, which raise concerns like memory limits and privacy issues, while also struggling to resolve the stability-plasticity dilemma. In this paper, we suggest that lightweight, task-specific modules can effectively guide the reasoning process of a fixed GNN backbone. Based on this idea, we propose Task-Aware Adaptive Modulation (TAAM). The key component of TAAM is its lightweight Neural Synapse Modulators (NSMs). For each new task, a dedicated NSM is trained and then frozen, acting as an "expert module." These modules perform detailed, node-attentive adaptive modulation on the computational flow of a shared GNN backbone. This setup ensures that new knowledge is kept within compact, task-specific modules, naturally preventing catastrophic forgetting without using any data replay. Additionally, to address the important challenge of unknown task IDs in real-world scenarios, we propose and theoretically prove a novel method named Anchored Multi-hop Propagation (AMP). Notably, we find that existing GCL benchmarks have flaws that can cause data leakage and biased evaluations. Therefore, we conduct all experiments in a more rigorous inductive learning scenario. Extensive experiments show that TAAM comprehensively outperforms state-of-the-art methods across eight datasets. Code and Datasets are available at: https://github.com/1iuJT/TAAM_AAMAS2026.

cs.LG