Zing 论坛

正文

GP2F:跨领域图提示学习与预训练图神经网络自适应融合框架

本文深入解析GP2F框架,这是天津大学团队提出的一种创新方法,通过跨领域图提示学习和自适应融合机制,解决预训练图神经网络在下游任务迁移中的领域差异问题。该工作已被ICML 2026接收。

graph neural networkstransfer learningcross-domainprompt learningICML 2026pre-trainingadaptive fusion
发布时间 2026/05/20 14:11最近活动 2026/05/20 14:18预计阅读 5 分钟
GP2F:跨领域图提示学习与预训练图神经网络自适应融合框架
1

章节 01

GP2F Framework: Core Overview

GP2F: Cross-Domain Graph Prompting with Adaptive Fusion Framework

This work, proposed by Tianjin University team, addresses the domain gap issue in pre-trained GNN transfer via cross-domain graph prompt learning and adaptive fusion. It has been accepted by ICML 2026.

2

章节 02

Research Background & Motivation

Graph Neural Networks (GNNs) excel at graph data but face labeled data scarcity. Pre-trained GNNs offer a solution, yet domain gaps between pre-training and downstream tasks limit transfer. Existing methods (fine-tuning, prompting) struggle with cross-domain scenarios like molecular graphs, social networks, and knowledge graphs due to structural and task differences.

3

章节 03

GP2F Core Components

GP2F's core idea is to use learnable graph prompts for domain adaptation and adaptive fusion of multiple pre-trained models.

  1. Cross-domain Graph Prompt Learning: Adds learnable prompt nodes/edges to input graphs, optimizing to bridge domain gaps without task labels. It's parameter-efficient, preserving pre-trained knowledge.

  2. Adaptive Fusion: Dynamically adjusts weights of pre-trained models based on input data characteristics, selecting optimal knowledge combinations for each sample.

4

章节 04

Technical Implementation Details

Built on PyTorch and PyTorch Geometric, GP2F includes:

  • Prompt Encoder: Combines raw graphs with learnable prompts.
  • Pre-trained Model Pool: Supports GCN, GAT, GraphSAGE, etc.
  • Fusion Network: Adaptive weighted fusion of model outputs.
  • Task Head: Task-specific prediction module.

Training uses two stages: first optimize prompt parameters, then jointly optimize prompts and fusion weights to avoid overfitting.

5

章节 05

Experimental Validation Results

Evaluated on cross-domain benchmarks:

  1. Outperforms traditional fine-tuning in cross-domain scenarios (e.g., pre-trained on molecular graphs, downstream social network tasks).
  2. Adaptive fusion beats single-model prompting and simple average.
  3. Parameter efficiency shines in few-shot learning, achieving near full-supervision performance with limited labels.

Accepted by ICML 2026, reflecting academic recognition.

6

章节 06

Application Prospects & Insights

Applicable to molecular computing, social networks, recommendation systems, drug discovery, and knowledge graph reasoning.

Insights:

  • Input-level adaptation (prompt-first) balances efficiency and transfer effect better than forced fine-tuning.
  • Adaptive fusion of pre-trained models is more effective than simple ensemble methods.
7

章节 07

Conclusion

GP2F represents a key advance in GNN transfer learning. Its cross-domain prompt learning and adaptive fusion address domain gaps effectively. As graph learning applications expand, such flexible domain-adaptive methods will grow in importance.