Response to Reviewer NoEV
We thank the reviewer very much for the careful reading and comments regarding our work. Please, see below our answer to the raised comments/questions.
> **Reviewer:** The main concern is that the method has little to do with graph. It seems like an application attempt of LLMs on natural language tasks, and TAG is just a scenario. Thus the contribution of the method is limited.
**Authors:** While it is true that the first part of our technique has no direct connection to graph topology, and focuses on node features, the overall methodology is strongly motivated towards addressing the challenges inherent in the TAG problem, an active research area propelled by the advent of language models.
As advocated in our global response, our approach is deeply rooted in addressing the challenges associated with the joint training of GNNs and LMs. The task of representation learning on TAGs involves integrating the raw text with graphs in a robust and scalable way. Existing literature can be broadly categorized into two paradigms: 1) End-to-end or joint training of LM and GNN, exemplified by approaches like GLEM [1] and DRAGON [2]; and 2) Two-stage training, where LM is initially trained followed by GNN training. Our approach belongs to the second paradigm, inheriting its efficiency and ease of plugging into existing GNN pipelines, but incorporates an LLM-to-LM interpreter to extract and interpret the LLM's useful prior knowledge.
The first approach is generally considered more attractive because the LM is trained to directly leverage graph structure. However, it often involves complex language and graph architectures, encounters training instabilities, and demands significant GPU resources, particularly challenging with LLMs. In this context, an important contribution of our work is the finding that with the help of our LLM-to-LM interpreter, the second paradigm of two-stage training can achieve equal or better performance than end-to-end or joint training, with much greater efficiency. In particular, our LLM-to-LM interpreter allows the valuable prior knowledge from LLMs to be embedded into GNN features, and our work shows that this does not sacrifice performance but greatly improves efficiency, compared to joint training.
Therefore, our work should be viewed as a strategic response aimed at overcoming these challenges. It goes beyond being a mere application of LLMs to TAG; rather, it represents a novel, efficient, and robust approach to addressing tasks that involve both text and graphs.
We acknowledge that we may not have sufficiently conveyed the important message that our work aims to resolve the intricate issues tied to LM+GNN training for TAG. We are committed to amending the paper to provide greater clarity on this aspect for the reader.
> **Reviewer:** Since the Deberta need fully fine-tuning, training the method cost much more memory than pure GNN methods.
**Authors:** We appreciate the reviewer's observation regarding the increased memory usage in our approach compared to pure GNN methods, as illustrated in Figure 2. It is important to note that learning on TAG inherently demands the integration of LMs and GNNs. Established methods like GIANT [5], GLEM [1], GraphFormers [3], and Patton [4], among others, all involve LM in their processes. Therefore, a meaningful comparison of memory cost should be drawn against these baselines rather than pure GNNs.
Recognizing the inherent tradeoff between cost and accuracy, we highlight that despite the increased resource requirements, our method TAPE significantly boosts the accuracy of the pure GNN method from 70.83% to 77.50%. We firmly believe that the substantial performance improvement justifies the accompanying rise in memory costs. Notably, these elevated resource demands are manageable, even with relatively cost-effective academic GPU resources like our A5000 GPU (24GB).
We greatly appreciate the reviewer's observation regarding memory usage, which prompted us to conduct a more in-depth analysis, as outlined in Table 14 (in blue), showing that TAPE provides both best performance, and comparable or better running time than other LM-based methods.
**Reference**
[1] Jianan Zhao, Meng Qu, Chaozhuo Li, Hao Yan, Qian Liu, Rui Li, Xing Xie, and Jian Tang. Learning on large-scale text-attributed graphs via variational inference. ICLR, 2023
[2] Michihiro Yasunaga, Antoine Bosselut, Hongyu Ren, Xikun Zhang, Christopher D Manning, Percy S Liang, and Jure Leskovec. Deep bidirectional language-knowledge graph pretraining. NeurIPS, 2022.
[3] J. Yang, et al. GraphFormers: GNN-nested Transformers for Representation Learning on Textual Graph. NeurIPS 2021.
[4] B. Jin, et al. Patton: Language Model Pretraining on Text-Rich Networks. ACL 2023.
[5] Chien, Eli, et al. Node feature extraction by self-supervised multi-scale neighborhood prediction.