TL;DR
Graph few-shot learning struggles with limited labeled examples and often requires complex adaptations during inference. A new model called VISION addresses these issues by using in-context learning to dynamically generate class-aware representations without fine-tuning.
✦ Why It Matters
Engineers can leverage VISION to improve graph learning tasks with minimal labeled data and without complex adaptations.
Key Takeaways
Full Summary
Graph few-shot learning focuses on classifying nodes in a graph with minimal labeled examples, but current methods often overlook the potential of unlabeled nodes and require complex adjustments during inference. The VISION model reframes this challenge as a sequence reasoning problem, utilizing a context-aware network that combines local graph structures with global task dependencies.
It employs role embeddings and a dual-context fusion module to create dynamic, class-aware representations based on the support set context. To train VISION effectively, an unsupervised task generator is introduced, which creates adaptive features and diverse pseudo-tasks from abundant unlabeled data.
Extensive experiments on multiple benchmark datasets demonstrate that VISION significantly outperforms existing approaches, achieving more efficient inference. This advancement unifies unsupervised meta-learning with graph in-context learning, making it a promising direction for future research and applications.
Related