Can we Soft Prompt LLMs for Graph Learning Tasks?
Zheyuan Liu, Xiaoxin He, Yijun Tian, Nitesh V. Chawla
TL;DR
The paper tackles whether large language models can handle graph learning tasks when guided by soft prompts. It introduces GraphPrompter, which fuses a GNN-based graph encoder with a frozen LLM by aligning per-node graph embeddings with textual attributes to form a soft prompt for node classification and link prediction. Empirical results across five graph benchmarks show strong performance, especially when using LoRA to tune the LLM, while zero-shot configurations underperform, underscoring the importance of explicit graph-aware prompting. Overall, the work demonstrates a viable pathway for deploying LLMs as predictors in graph contexts, offering a plug-and-play framework that blends structural and textual information for advanced graph understanding.
Abstract
Graph plays an important role in representing complex relationships in real-world applications such as social networks, biological data and citation networks. In recent years, Large Language Models (LLMs) have achieved tremendous success in various domains, which makes applying LLMs to graphs particularly appealing. However, directly applying LLMs to graph modalities presents unique challenges due to the discrepancy and mismatch between the graph and text modalities. Hence, to further investigate LLMs' potential for comprehending graph information, we introduce GraphPrompter, a novel framework designed to align graph information with LLMs via soft prompts. Specifically, GraphPrompter consists of two main components: a graph neural network to encode complex graph information and an LLM that effectively processes textual information. Comprehensive experiments on various benchmark datasets under node classification and link prediction tasks demonstrate the effectiveness of our proposed method. The GraphPrompter framework unveils the substantial capabilities of LLMs as predictors in graph-related tasks, enabling researchers to utilize LLMs across a spectrum of real-world graph scenarios more effectively.
