Pith. sign in

REVIEW 2 major objections 8 minor 1 cited by

Graph2text or Graph2token: A Perspective of Large Language Models for Graph Learning

T0 review · 2 major / 8 minor · reviewed 2026-08-10 · deepseek-v4-flash

Pith's one-line read This survey claims that every LLM-for-graph method is either Graph2text or Graph2token, defined by what the model receives.

desk verdict A useful survey framing undercut by a definitional blur: the Graph2text/Graph2token split is a good organizing idea but needs a clearer criterion before the taxonomy can be relied on. read the letter →

arxiv 2501.01124 v1 pith:MPBKYWEN submitted 2025-01-02 cs.LG

classification cs.LG
keywords graphlearninglargelanguagemodelsGraph2textGraph2tokengraph-to-texttransformationsurveytaxonomytokenization
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

This survey of LLM-based graph learning proposes that the entire method landscape is determined by one design choice: what the language model actually receives. The paper's central claim is that every existing method is either Graph2text, which serializes a graph into human-readable strings, or Graph2token, which converts nodes, edges, or subgraphs into token or embedding inputs. It argues that both paradigms confront the same four transformation problems—alignment, position, multi-level semantics, and context—and organizing the literature this way explains why and how LLMs can reason over irregular graph structures. The paper also draws practical conclusions: which paradigm fits which graph type, when prompting versus fine-tuning is cheaper or safer, and which open problems remain.

What carries the argument

The central object is the transformation step from graph to LLM input, and the paper's machinery is a two-armed taxonomy: Graph2text versus Graph2token, with the latter subdivided by token granularity (node, pairwise, group-aware, holistic). Four named challenges—alignment, position, multi-level semantics, and context—serve as the analytic grid that assigns each subclass its problem. The taxonomy carries the argument by converting an unstructured method zoo into a two-by-four design space that the paper then uses to give model-selection and prompting-versus-fine-tuning guidance.

What would settle it

The taxonomy would be settled by an annotation study: take a representative sample of published LLM4graph papers and ask independent annotators to classify each as Graph2text, Graph2token, or both/neither; if a substantial share lands in both/neither or annotators disagree, the dichotomy fails, and the paper's own placements of GraphTranslator and Gpt4graph are immediate candidates to test.

Watch

Extended reading notes

Core claim

The paper's central claim is taxonomic: when a graph is fed to an LLM, the format of that input is the fundamental dividing line in the field the authors call LLM4graph. Graph2text covers methods that translate graph structure into natural language or graph-description languages such as GraphML and query languages like Cypher, preserving interpretability and using the LLM's text-processing strength. Graph2token covers methods that encode graph components as tokens—single nodes, node pairs, node groups, or the whole graph—often via a graph encoder or projection layer, so that structural and semantic information is fused before the LLM sees it. The paper pairs this bipartition with four challenges of graph-to-text transformation (alignment, position, multi-level semantics, context) and uses them as a problem-oriented grid to subclassify and compare methods. If the taxonomy is right, the scattered toolbox of LLM-graph techniques reduces to a small set of design decisions, and the four challenges become a checklist for evaluating any new method.

Load-bearing premise

The dichotomy between Graph2text and Graph2token is exhaustive and mutually exclusive: every LLM4graph method can be assigned unambiguously to exactly one paradigm based on the format of the LLM input.

Editorial extensions

If this is right

  • Any future LLM4graph method can be classified by a single question: does the LLM receive readable text or token/embedding input?
  • The four challenges give a concrete checklist—alignment, position, multi-level semantics, context—for designing graph serializations and for spotting why a given method underperforms.
  • The practical guideline says Graph2text suits textual graphs, AMR graphs, and knowledge graphs where interpretability matters, while Graph2token suits attributed, heterogeneous, community, and molecular graphs where structure must be fused into representations.
  • Prompt-based tricks are preferred when data is scarce or when privacy rules out sending sensitive graph data to external APIs; fine-tuning is preferred when the task demands granular control and customization.
  • The paper's five open problems (general instructions, theoretical invariance, fairness, efficiency and scalability, dynamic graphs) give a roadmap of where the taxonomy stops being prescriptive.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • Beyond the paper, the Graph2text/Graph2token distinction is best read as a spectrum: many deployed systems already mix natural-language prompts with projected graph embeddings, so the exhaustive dichotomy is a useful approximation rather than a sharp law.
  • Beyond the paper, the four challenges could be turned into a falsifiable evaluation protocol: report which challenges each method addresses and measure the performance gain when each is explicitly handled.
  • Beyond the paper, the suggestion to serialize graphs with database query languages (Cypher, Gremlin) is directly testable by comparing LLM accuracy on identical graph reasoning tasks across serialization formats.
  • Beyond the paper, the treatment of non-edges as negative semantics suggests a concrete experiment: check whether Graph2token models that explicitly encode disconnected node pairs beat those that encode only observed edges on link prediction benchmarks.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

2 major / 8 minor

Summary. The manuscript is a survey of methods that apply large language models (LLMs) to graph learning, termed LLM4graph. It argues that all such methods can be partitioned into two paradigms: Graph2text, which converts graphs into human-readable text, and Graph2token, which converts graphs into tokens or embeddings for LLM input. The paper identifies four transformation challenges (alignment, position, multi-level semantics, and context), uses them to organize the methods, provides practical guidance for model selection based on graph type, hardware, and optimization tricks, and outlines five future research directions.

Significance. The paper offers a broad and current collection of LLM4graph methods, a transformation-based perspective that goes beyond task- or architecture-centric surveys, and a practical resource table with hardware and code availability. If the taxonomy were precisely defined, this could become a useful reference for researchers entering the field. The main contribution, however, is the proposed Graph2text/Graph2token dichotomy, and that dichotomy currently lacks a clear operational boundary and contains internally inconsistent method assignments. The paper also compiles useful open problems, but the foundational classification claim needs substantial revision before the survey can serve as a reliable organizing framework.

major comments (2)
  1. [Section 2.2; Section 5.1.1; Section 6.2.1; Table 1; Section 5.3.2] The central dichotomy between Graph2text and Graph2token is not operationally defined. Section 2.2 defines 'tokens' in two incompatible ways: first as tokenizer subword units, then as numerical embeddings derived from auxiliary neural network processing. Since every Graph2text input is also tokenized by the LLM, the phrase 'becomes tokens' cannot separate the paradigms. The method assignments are also inconsistent: GraphTranslator is described in Section 5.1.1 as converting structured graph information into 'natural language instructions comprehensible to LLMs', yet it is categorized under Node2token; Gpt4graph is presented as a GDL/Graph2text method in Section 4.1 but appears as an example of soft prompts in Section 6.2.1 and Table 1; GraphPrompter in Section 5.3.2 feeds LLMs soft prompts that combine node embeddings with text embeddings, spanning both paradigms. The paper needs an explicit decision rule (for example, based on whether the LLM input is human-readable language tokens or continuous vectors inserted into the embedding space) and a reclassification of all methods according to that rule.
  2. [Sections 4 and 5] The claimed use of the four challenges as subclassification criteria is inconsistent with the actual organization. Section 4 subclassifies Graph2text by graph type (general, AMR, KG) and then by challenges, whereas Section 5 subclassifies Graph2token by token granularity (node, pairwise, group, holistic) and then by challenges. Moreover, the challenge dimensions are unevenly covered: Section 5.2 (Pairwise nodes2token) has no Alignment subsection, and Section 5.3 (Group-aware nodes2token) has no Position subsection, while other categories contain different subsets of challenges. A consistent two-level taxonomy (for example, paradigm first, challenge second, then specific methods) is needed for the framework to be usable and for fair comparison across the two paradigms.
minor comments (8)
  1. [Section 5.1.1] The sentence 'This process addresses the problem of modality mismatch between graph data and text data [? ]' contains a placeholder citation '[? ]' that must be replaced with a proper reference.
  2. [Section 4.3] The sentence 'This process aims to align Graph2text properly to ensure that the structured knowledge is being inaccurately converted' is self-contradictory; 'inaccurately' should likely be 'accurately'.
  3. [Section 3] In the discussion of the context problem, 't is worth noting that texts are always regular sequences' is missing the initial 'I'.
  4. [Section 6.2.2] The phrase 'ensuring effective cross-modal intergration' contains a typo: 'intergration' should be 'integration'.
  5. [Section 7.5] The phrase 'perform consistenly' should be 'perform consistently'.
  6. [Table 1] The GraphPrompter row cites reference [127], but the correct reference for GraphPrompter is [125]; reference [127] is MoMu. Please correct the citation.
  7. [Section 1 footnote] The footnote explaining that 'text' refers both to a general modality and to the specific Graph2text representation is confusing; consider defining 'text' and 'token' in a single, unambiguous place, and avoid using 'textual representation' to cover both paradigms.
  8. [Section 6.1.3] The recommendation to use Pairwise nodes2token for heterogeneous graphs is not well supported by the methods cited there (N-GCN, T-PAIR, PLNLP, LPFormer, NAGphormer), which are mostly general link-prediction and node-classification methods; please justify or adjust the recommendation.

Circularity Check

0 steps flagged · score 0.0 of 10

No circularity: the Graph2text/Graph2token taxonomy is a stipulated organizational scheme; the paper's self-citations are background only and no prediction reduces to an input.

full rationale

This is a survey paper with no fitted parameters, no quantitative predictions, and no derivation chain that could reduce to its own inputs. The central contribution is a taxonomic claim: methods are grouped by whether graph information is supplied to an LLM as readable text or as graph-derived token/embedding representations. That distinction is stipulated in Section 1 and applied to external methods; it is not derived from the methods being classified. The four transformation challenges (alignment, position, multi-level semantics, context) are presented as organizational lenses, not as theorems or fitted results. Citations to the authors' own prior work ([2,3,18,107,141]) appear only as background for graph-learning surveys, graph transformers, heterogeneous-graph context, and fairness; none is invoked to justify the taxonomy or to rule out alternatives. There is no imported uniqueness theorem, no ansatz smuggled in via citation, and no fitted input renamed as a prediction. The paper's internal inconsistencies in assigning particular methods (e.g., Gpt4graph appearing in both Graph2text and soft-prompt/Graph2token contexts; GraphTranslator described as producing natural-language instructions yet placed under Node2token in Section 5.1.1) are classification-rule ambiguities rather than circular reasoning, because the taxonomy does not depend on those placements for its definition. A missing citation marker in Section 5.1.1 is a bibliographic omission, not a circular step. Therefore the honest finding is no significant circularity.

Assumptions & free parameters 0 free parameters · 3 assumptions · 0 invented entities

The review makes no quantitative predictions, so there are no free parameters or invented physical entities. The taxonomy rests on three implicit assumptions: the two-paradigm dichotomy is exhaustive, the four challenges are the right sub-classification axes, and the cited method descriptions are accurate. The first two are ad hoc to this paper, and the third is a domain assumption given the lack of a verification protocol.

assumptions (3)
  • ad hoc to paper All LLM4graph methods can be partitioned into exactly two paradigms, Graph2text and Graph2token, based on whether the transformed input is human-readable text or token/embedding sequences.
    The entire taxonomy depends on this dichotomy; the paper's own assignments are ambiguous, e.g., GraphTranslator converts graphs into natural language instructions yet is listed under Node2token in Section 5.1.1.
  • ad hoc to paper The four transformation challenges (alignment, position, multi-level semantics, context) are the appropriate criteria for subclassification.
    The subclassification sections are uneven: Pairwise nodes2token only discusses position and hierarchy, while Holistic nodes2token only discusses alignment and position; no justification is given for why each method addresses a particular challenge.
  • domain assumption The descriptions of cited methods are accurate and complete enough to support the taxonomy.
    The review does not include a systematic verification protocol; mis-categorizations such as placing Gpt4graph under both hard and soft prompts (Section 6.2.1 vs Table 1) suggest some descriptions may be unreliable.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Graph2text or Graph2token: A Perspective of Large Language Models for Graph Learning." pith.science (2026). https://pith.science/paper/MPBKYWEN

@misc{pith2026250101124,
  author       = {Pith},
  title        = {Pith review of: Graph2text or Graph2token: A Perspective of Large Language Models for Graph Learning},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/MPBKYWEN}},
  note         = {Machine review of arXiv:2501.01124}
}
read the original abstract

Graphs are data structures used to represent irregular networks and are prevalent in numerous real-world applications. Previous methods directly model graph structures and achieve significant success. However, these methods encounter bottlenecks due to the inherent irregularity of graphs. An innovative solution is converting graphs into textual representations, thereby harnessing the powerful capabilities of Large Language Models (LLMs) to process and comprehend graphs. In this paper, we present a comprehensive review of methodologies for applying LLMs to graphs, termed LLM4graph. The core of LLM4graph lies in transforming graphs into texts for LLMs to understand and analyze. Thus, we propose a novel taxonomy of LLM4graph methods in the view of the transformation. Specifically, existing methods can be divided into two paradigms: Graph2text and Graph2token, which transform graphs into texts or tokens as the input of LLMs, respectively. We point out four challenges during the transformation to systematically present existing methods in a problem-oriented perspective. For practical concerns, we provide a guideline for researchers on selecting appropriate models and LLMs for different graphs and hardware constraints. We also identify five future research directions for LLM4graph.

Figures

Figures reproduced from arXiv: 2501.01124 by the authors.

Figure 1
Figure 1. The illustration of LLM4graph. LLMs understand and process various types of graph data through [PITH_FULL_IMAGE:figures/full_fig_p004_1.png] view at source ↗
Figure 2
Figure 2. A taxonomy of research on large language models for graph learning. [PITH_FULL_IMAGE:figures/full_fig_p004_2.png] view at source ↗
Figure 3
Figure 3. Challenges in transforming graphs to texts. (a) The alignment problem. (b) The position problem. (c) [PITH_FULL_IMAGE:figures/full_fig_p007_3.png] view at source ↗
Figures from the paper (4 more)
Figure 4
Figure 4. Figure 4: Direct textualisation with Natural language generation and GDL generation. [PITH_FULL_IMAGE:figures/full_fig_p009_4.png]
Figure 5
Figure 5. Figure 5: Technical approach of the indirect textualization method. [PITH_FULL_IMAGE:figures/full_fig_p010_5.png]
Figure 6
Figure 6. Figure 6: Schematic diagram of Graph2token. Converting graph data to tokens in the graph task to help the [PITH_FULL_IMAGE:figures/full_fig_p018_6.png]
Figure 7
Figure 7. Figure 7: Classification of four tokenization methods based on token granularity. [PITH_FULL_IMAGE:figures/full_fig_p019_7.png]

Discussion (0). Continue with ORCID to comment.

Forward citations

Cited by 1 Pith paper

Reviewed papers in the Pith corpus that reference this work. Sorted by Pith novelty score. Full citation record

  1. Ta-G-T: Subjectivity Capture in Table to Text Generation via RDF Graphs

    cs.CL 2025-07 conditional novelty 4.0 of 10

    A modular T5-based pipeline using RDF triples, sentence aggregation, and style transfer generates factual text with subjective interpretations from tables, achieving moderate gains over several LLM baselines.

Reference graph

Works this paper leans on

145 extracted references · 33 canonical work pages · cited by 1 Pith paper

  1. [1]

    Siddhartha Sahu, Amine Mhedhbi, Semih Salihoglu, Jimmy Lin, and M Tamer Özsu. 2020. The ubiquity of large graphs and surprising challenges of graph processing: extended survey. The VLDB journal 29 (2020), 595–618

  2. [2]

    Feng Xia, Ke Sun, Shuo Yu, Abdul Aziz, Liangtian Wan, Shirui Pan, and Huan Liu. 2021. Graph Learning: A Survey. IEEE Transactions on Artificial Intelligence 2, 2 (2021), 109–127. https://doi.org/10.1109/TAI.2021.3076021

  3. [3]

    Falih Gozi Febrinanto, Feng Xia, Kristen Moore, Chandra Thapa, and Charu Aggarwal. 2023. Graph Lifelong Learning: A Survey. IEEE Computational Intelligence Magazine 18, 1 (2023), 32–51. https://doi.org/10.1109/MCI.2022.3222049

  4. [4]

    Seth A Myers, Aneesh Sharma, Pankaj Gupta, and Jimmy Lin. 2014. Information network or social network? The structure of the Twitter follow graph. In WWW’14, Companion Volume. 493–498

  5. [5]

    Hai-Cheng Yi, Zhu-Hong You, De-Shuang Huang, and Chee Keong Kwoh. 2022. Graph representation learning in bioinformatics: trends, methods and applications. Briefings in Bioinformatics 23, 1 (2022), bbab340

  6. [6]

    Ilaria Tiddi and Stefan Schlobach. 2022. Knowledge graphs as tools for explainable machine learning: A survey. Artificial Intelligence 302 (2022), 103627

  7. [7]

    Huiling Tu, Shuo Yu, Vidya Saikrishna, Feng Xia, and Karin Verspoor. 2023. Deep Outdated Fact Detection in Knowledge Graphs. In 2023 IEEE International Conference on Data Mining Workshops (ICDMW) . 1443–1452. https: //doi.org/10.1109/ICDMW60847.2023.00184

  8. [8]

    Rex Ying, Ruining He, Kaifeng Chen, Pong Eksombatchai, William L Hamilton, and Jure Leskovec. 2018. Graph con- volutional neural networks for web-scale recommender systems. InProceedings of the 24th ACM SIGKDD international conference on knowledge discovery & data mining . 974–983

Show all 145 references
  1. [9]

    Feng Xia, Nana Yaw Asabere, Ahmedin Mohammed Ahmed, Jing Li, and Xiangjie Kong. 2013. Mobile Multimedia Recommendation in Smart Communities: A Survey. IEEE Access 1 (2013), 606–624

  2. [10]

    Lei Shi, Hanghang Tong, Jie Tang, and Chuang Lin. 2015. Vegas: Visual influence graph summarization on citation networks. IEEE Transactions on Knowledge and Data Engineering 27, 12 (2015), 3417–3431

  3. [11]

    Shuo Yu, Jiaying Liu, Zhuo Yang, Zhen Chen, Huizhen Jiang, Amr Tolba, and Feng Xia. 2018. PAVE: Personalized Academic Venue recommendation Exploiting co-publication networks. Journal of Network and Computer Applications 104 (2018), 38–47. https://doi.org/10.1016/j.jnca.2017.12.004

  4. [12]

    Thomas N Kipf and Max Welling. 2016. Semi-supervised classification with graph convolutional networks. arXiv preprint arXiv:1609.02907 (2016)

  5. [13]

    Petar Veličković, Guillem Cucurull, Arantxa Casanova, Adriana Romero, Pietro Liò, and Yoshua Bengio. 2018. Graph Attention Networks. In International Conference on Learning Representations (ICLR) . Vancouver, BC, Canada

  6. [14]

    T Konstantin Rusch, Michael M Bronstein, and Siddhartha Mishra. 2023. A survey on oversmoothing in graph neural networks. arXiv preprint arXiv:2303.10993 (2023)

  7. [15]

    Francesco Di Giovanni, Lorenzo Giusti, Federico Barbero, Giulia Luise, Pietro Lio, and Michael M Bronstein. 2023. On over-squashing in message passing neural networks: The impact of width, depth, and topology. In International Conference on Machine Learning . PMLR, 7865–7885

  8. [16]

    Uri Alon and Eran Yahav. 2021. On the Bottleneck of Graph Neural Networks and its Practical Implications. In International Conference on Learning Representations

  9. [17]

    Chengxuan Ying, Tianle Cai, Shengjie Luo, Shuxin Zheng, Guolin Ke, Di He, Yanming Shen, and Tie-Yan Liu. 2021. Do transformers really perform badly for graph representation? Advances in neural information processing systems 34 (2021), 28877–28888

  10. [18]

    Ahsan Shehzad, Feng Xia, Shagufta Abid, Ciyuan Peng, Shuo Yu, Dongyu Zhang, and Karin Verspoor. 2024. Graph transformers: A survey. arXiv preprint arXiv:2407.09777 (2024)

  11. [19]

    Yujie Xing, Xiao Wang, Yibo Li, Hai Huang, and Chuan Shi. 2024. Less is More: on the Over-Globalizing Problem in Graph Transformers. In Proceedings of the 41st ICML , Vol. 235. PMLR, 54656–54672

  12. [20]

    Lingfei Wu, Peng Cui, Jian Pei, and Liang Zhao. 2022. Graph Neural Networks: Foundations, Frontiers, and Applications . Springer Singapore, Singapore. 725 pages

  13. [21]

    Bryan Perozzi, Rami Al-Rfou, and Steven Skiena. 2014. Deepwalk: Online learning of social representations. In Proceedings of the 20th ACM SIGKDD international conference on Knowledge discovery and data mining . 701–710

  14. [22]

    Aditya Grover and Jure Leskovec. 2016. node2vec: Scalable feature learning for networks. In Proceedings of the 22nd ACM SIGKDD international conference on Knowledge discovery and data mining . 855–864

  15. [23]

    Kai Sun, Yifan Xu, Hanwen Zha, Yue Liu, and Xin Luna Dong. 2024. Head-to-Tail: How Knowledgeable are Large Language Models (LLMs)? AKA Will LLMs Replace Knowledge Graphs?. InProceedings of the North American Chapter of the Association for Computational Linguistics (Volume 1: L...

  16. [24]

    Allen H Huang, Hui Wang, and Yi Yang. 2023. FinBERT: A large language model for extracting information from financial text. Contemporary Accounting Research 40, 2 (2023), 806–841

  17. [25]

    Peter Buneman, Dennis Dosso, Matteo Lissandrini, and Gianmaria Silvello. 2021. Data citation and the citation graph. Quantitative Science Studies 2, 4 (2021), 1399–1422. , Vol. 1, No. 1, Article 1. Publication date: January 2025. 1:36 Yu et al

  18. [26]

    Aidan Hogan, Eva Blomqvist, Michael Cochez, Claudia d’Amato, Gerard De Melo, Claudio Gutierrez, Sabrina Kirrane, José Emilio Labra Gayo, Roberto Navigli, Sebastian Neumaier, et al. 2021. Knowledge graphs. ACM Computing Surveys (Csur) 54, 4 (2021), 1–37

  19. [27]

    Christo Wilson, Bryce Boe, Alessandra Sala, Krishna PN Puttaswamy, and Ben Y Zhao. 2009. User interactions in social networks and their implications. In Proceedings of the 4th ACM European conference on Computer systems . 205–218

  20. [28]

    Jon M Kleinberg, Ravi Kumar, Prabhakar Raghavan, Sridhar Rajagopalan, and Andrew S Tomkins. 1999. The web as a graph: Measurements, models, and methods. In Computing and Combinatorics: 5th Annual International Conference, COCOON’99 Tokyo, Japan, July 26–28, 1999 Proceedings 5 ...

  21. [29]

    Yufei He and Bryan Hooi. 2024. UniGraph: Learning a Cross-Domain Graph Foundation Model From Natural Language. arXiv preprint arXiv:2402.13630 (2024)

  22. [30]

    Shangbin Feng, Zhaoxuan Tan, Wenqian Zhang, Zhenyu Lei, and Yulia Tsvetkov. 2022. Kalm: Knowledge-aware integration of local, document, and global contexts for long document understanding. arXiv preprint arXiv:2210.04105 (2022)

  23. [31]

    Jie Zhou, Ganqu Cui, Shengding Hu, Zhengyan Zhang, Cheng Yang, Zhiyuan Liu, Lifeng Wang, Changcheng Li, and Maosong Sun. 2020. Graph neural networks: A review of methods and applications. AI open 1 (2020), 57–81

  24. [32]

    Jiabin Tang, Yuhao Yang, Wei Wei, Lei Shi, Lixin Su, Suqi Cheng, Dawei Yin, and Chao Huang. 2024. Graphgpt: Graph instruction tuning for large language models. In Proceedings of the 47th International ACM SIGIR Conference on Research and Development in Information Retrieval . 491–500

  25. [33]

    Jiawei Liu, Cheng Yang, Zhiyuan Lu, Junze Chen, Yibo Li, Mengmei Zhang, Ting Bai, Yuan Fang, Lichao Sun, Philip S Yu, et al. 2023. Towards graph foundation models: A survey and beyond. arXiv preprint arXiv:2310.11829 (2023)

  26. [34]

    Yuhan Li, Zhixun Li, Peisong Wang, Jia Li, Xiangguo Sun, Hong Cheng, and Jeffrey Xu Yu. 2023. A survey of graph meets large language model: Progress and future directions. arXiv preprint arXiv:2311.12399 (2023)

  27. [35]

    Bowen Jin, Gang Liu, Chi Han, Meng Jiang, Heng Ji, and Jiawei Han. 2023. Large language models on graphs: A comprehensive survey. arXiv preprint arXiv:2312.02783 (2023)

  28. [36]

    Xubin Ren, Jiabin Tang, Dawei Yin, Nitesh Chawla, and Chao Huang. 2024. A survey of large language models for graphs. In Proceedings of the 30th ACM SIGKDD Conference on Knowledge Discovery and Data Mining . 6616–6626

  29. [37]

    Kai Guo, Zewen Liu, Zhikai Chen, Hongzhi Wen, Wei Jin, Jiliang Tang, and Yi Chang. 2024. Learning on Graphs with Large Language Models (LLMs): A Deep Dive into Model Robustness. arXiv preprint arXiv:2407.12068 (2024)

  30. [38]

    Ziwei Zhang, Haoyang Li, Zeyang Zhang, Yijian Qin, Xin Wang, and Wenwu Zhu. 2023. Graph meets llms: Towards large graph models. In NeurIPS 2023 Workshop: New Frontiers in Graph Learning

  31. [39]

    Garima Agrawal, Tharindu Kumarage, Zeyad Alghami, and Huan Liu. 2023. Can knowledge graphs reduce hallucina- tions in llms?: A survey. arXiv preprint arXiv:2311.07914 (2023)

  32. [40]

    Lanning Wei, Jun Gao, and Huan Zhao. 2024. Towards Versatile Graph Learning Approach: from the Perspective of Large Language Models. arXiv preprint arXiv:2402.11641 (2024)

  33. [41]

    Wenqi Fan, Shijie Wang, Jiani Huang, Zhikai Chen, Yu Song, Wenzhuo Tang, Haitao Mao, Hui Liu, Xiaorui Liu, Dawei Yin, et al. 2024. Graph machine learning in the era of large language models (llms). arXiv preprint arXiv:2404.14928 (2024)

  34. [42]

    Hugo Touvron, Louis Martin, Kevin Stone, Peter Albert, Amjad Almahairi, Yasmine Babaei, Nikolay Bashlykov, Soumya Batra, Prajjwal Bhargava, Shruti Bhosale, et al. 2023. Llama 2: Open foundation and fine-tuned chat models. arXiv preprint arXiv:2307.09288 (2023)

  35. [43]

    Yilun Zhu, Joel Ruben Antony Moniz, Shruti Bhargava, Jiarui Lu, Dhivya Piraviperumal, Site Li, Yuan Zhang, Hong Yu, and Bo-Hsiang Tseng. 2024. Can Large Language Models Understand Context? arXiv preprint arXiv:2402.00858 (2024)

  36. [44]

    Ilya Sutskever, James Martens, and Geoffrey E Hinton. 2011. Generating text with recurrent neural networks. In Proceedings of the 28th international conference on machine learning (ICML-11) . 1017–1024

  37. [45]

    Alex Graves and Alex Graves. 2012. Long short-term memory. Supervised sequence labelling with recurrent neural networks (2012), 37–45

  38. [46]

    Junyoung Chung, Caglar Gulcehre, KyungHyun Cho, and Yoshua Bengio. 2014. Empirical evaluation of gated recurrent neural networks on sequence modeling. arXiv preprint arXiv:1412.3555 (2014)

  39. [47]

    Petar Velickovic, Guillem Cucurull, Arantxa Casanova, Adriana Romero, Pietro Lio, Yoshua Bengio, et al. 2017. Graph attention networks. stat 1050, 20 (2017), 10–48550

  40. [48]

    Keyulu Xu, Weihua Hu, Jure Leskovec, and Stefanie Jegelka. 2018. How powerful are graph neural networks? arXiv preprint arXiv:1810.00826 (2018)

  41. [49]

    Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez, Łukasz Kaiser, and Illia Polosukhin. 2017. Attention is all you need. Advances in neural information processing systems 30 (2017). , Vol. 1, No. 1, Article 1. Publication date: January 2025...

  42. [50]

    Andrej Karpathy and Li Fei-Fei. 2015. Deep visual-semantic alignments for generating image descriptions. In Proceedings of the IEEE conference on computer vision and pattern recognition . 3128–3137

  43. [51]

    Tom Brown, Benjamin Mann, Nick Ryder, Melanie Subbiah, Jared D Kaplan, Prafulla Dhariwal, Arvind Neelakantan, Pranav Shyam, Girish Sastry, Amanda Askell, et al. 2020. Language models are few-shot learners. Advances in neural information processing systems 33 (2020), 1877–1901

  44. [52]

    Jason Wei, Xuezhi Wang, Dale Schuurmans, Maarten Bosma, Ed H Chi, Quoc V Le, and Denny Zhou. 2022. Chain of thought prompting elicits reasoning in large language models. arXiv preprint arXiv:2201.11903 (2022)

  45. [53]

    Bahare Fatemi, Jonathan Halcrow, and Bryan Perozzi. 2023. Talk like a Graph: Encoding Graphs for Large Language Models. In NeurIPS 2023 Workshop: New Frontiers in Graph Learning . https://openreview.net/forum?id=7CAJpRo1Q8

  46. [54]

    Heng Wang, Shangbin Feng, Tianxing He, Zhaoxuan Tan, Xiaochuang Han, and Yulia Tsvetkov. 2024. Can language models solve graph problems in natural language? Advances in Neural Information Processing Systems 36 (2024)

  47. [55]

    Zeyang Zhang, Xin Wang, Ziwei Zhang, Haoyang Li, Yijian Qin, and Wenwu Zhu. 2024. LLM4DyG: Can Large Language Models Solve Spatial-Temporal Problems on Dynamic Graphs?. In Conference on Knowledge Discovery and Data Mining (ACM SIGKDD)

  48. [56]

    Jiayan Guo, Lun Du, Hengyu Liu, Mengyu Zhou, Xinyi He, and Shi Han. 2023. Gpt4graph: Can large language models understand graph structured data? an empirical evaluation and benchmarking.arXiv preprint arXiv:2305.15066 (2023)

  49. [57]

    Jiawei Zhang. 2023. Graph-toolformer: To empower llms with graph reasoning ability via prompt augmented by chatgpt. arXiv preprint arXiv:2304.11116 (2023)

  50. [58]

    Minseok Jeon, Jihyeok Park, and Hakjoo Oh. 2024. PL4XGL: A Programming Language Approach to Explainable Graph Learning. Proceedings of the ACM on Programming Languages 8, PLDI (2024), 2148–2173

  51. [59]

    Ulrik Brandes, Markus Eiglsperger, Jürgen Lerner, Christian Pich, Robert Pimenta, and Dorothea Wagner. 2014. Graph Markup Language (GraphML). In Handbook of Graph Drawing and Visualization . 517–541

  52. [60]

    Nadime Francis, Alastair Green, Paolo Guagliardo, Leonid Libkin, Tobias Lindaaker, Victor Marsault, Stefan Plantikow, Mats Rydberg, Petra Selmer, and Andrés Taylor. 2018. Cypher: An evolving query language for property graphs. In Proceedings of the 2018 international conferenc...

  53. [61]

    Bailin Wang, Richard Shin, Xiaodong Liu, Oleksandr Polozov, Matthew Richardson, and Yashar Mehdad. 2020. Rat- SQL: Relation-Aware Schema Encoding and Linking for Text-to-SQL Parsers. InProceedings of the 58th Annual Meeting of the Association for Computational Linguistics . As...

  54. [62]

    Rodriguez and Peter Neubauer

    Marko A. Rodriguez and Peter Neubauer. 2015. The Gremlin Graph Traversal Machine and Language (Invited Talk). In Proceedings of the 15th Symposium on Database Programming Languages . ACM, Pittsburg, PA, USA, 1–10

  55. [63]

    Jeffrey Flanigan, Chris Dyer, Noah A Smith, and Jaime G Carbonell. 2016. Generation from abstract meaning representation using tree transducers. In Proceedings of the 2016 conference of the north american chapter of the association for computational linguistics: Human language...

  56. [64]

    Nima Pourdamghani, Kevin Knight, and Ulf Hermjakob. 2016. Generating english from abstract meaning representa- tions. In Proceedings of the 9th international natural language generation conference . 21–25

  57. [65]

    Emma Manning. 2019. A partially rule-based approach to AMR generation. In Proceedings of the 2019 Conference of the North American Chapter of the Association for Computational Linguistics: Student Research Workshop . 61–70

  58. [66]

    Ioannis Konstas, Srinivasan Iyer, Mark Yatskar, Yejin Choi, and Luke Zettlemoyer. 2017. Neural AMR: Sequence- to-Sequence Models for Parsing and Generation. In Proceedings of the 55th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers) . 146–157

  59. [67]

    Daniel Beck, Gholamreza Haffari, and Trevor Cohn. 2018. Graph-to-sequence learning using Gated Graph Neural Networks. In Annual Meeting of the Association of Computational Linguistics 2018 . Association for Computational Linguistics (ACL), 273–283

  60. [68]

    Yanbin Zhao, Lu Chen, Zhi Chen, Ruisheng Cao, Su Zhu, and Kai Yu. 2020. Line graph enhanced AMR-to-text generation with mix-order graph attention networks. In Proceedings of the 58th Annual meeting of the association for computational linguistics. 732–741

  61. [69]

    Michele Bevilacqua, Rexhina Blloshmi, and Roberto Navigli. 2021. One SPRING to rule them both: Symmetric AMR semantic parsing and generation without a complex pipeline. In Proceedings of the AAAI Conference on Artificial Intelligence, Vol. 35. 12564–12573

  62. [70]

    Mike Lewis, Yinhan Liu, Naman Goyal, Marjan Ghazvininejad, Abdelrahman Mohamed, Omer Levy, Veselin Stoyanov, and Luke Zettlemoyer. 2020. BART: Denoising Sequence-to-Sequence Pre-training for Natural Language Generation, Translation, and Comprehension. In Proceedings of the 58t...

  63. [71]

    Deng Cai and Wai Lam. 2020. Graph transformer for graph-to-sequence learning. InProceedings of the AAAI conference on artificial intelligence, Vol. 34. 7464–7471

  64. [72]

    Christopher Morris, Martin Ritzert, Matthias Fey, William L Hamilton, Jan Eric Lenssen, Gaurav Rattan, and Martin Grohe. 2019. Weisfeiler and leman go neural: Higher-order graph neural networks. In Proceedings of the AAAI , Vol. 1, No. 1, Article 1. Publication date: January 2...

  65. [73]

    Zhijiang Guo, Yan Zhang, Zhiyang Teng, and Wei Lu. 2019. Densely connected graph convolutional networks for graph-to-sequence learning. Transactions of the Association for Computational Linguistics 7 (2019), 297–312

  66. [74]

    Justin Gilmer, Samuel S Schoenholz, Patrick F Riley, Oriol Vinyals, and George E Dahl. 2017. Neural message passing for quantum chemistry. In International conference on machine learning . PMLR, 1263–1272

  67. [75]

    Amit Moryossef, Yoav Goldberg, and Ido Dagan. 2019. Step-by-Step: Separating Planning from Realization in Neural Data-to-Text Generation. In Proceedings of the 2019 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Techno...

  68. [76]

    Yanchao Tan, Zihao Zhou, Hang Lv, Weiming Liu, and Carl Yang. 2024. Walklm: A uniform language model fine-tuning framework for attributed graph embedding. Advances in Neural Information Processing Systems 36 (2024)

  69. [77]

    Diego Marcheggiani and Laura Perez-Beltrachini. 2018. Deep Graph Convolutional Encoders for Structured Data to Text Generation. In Proceedings of the 11th International Conference on Natural Language Generation . 1–9

  70. [78]

    Yi Luan Mirella Lapata Rik Koncel-Kedziorski, Dhanush Bekal and Hannaneh Hajishirzi. 2019. Text Generation from Knowledge Graphs with Graph Transformers. In NAACL

  71. [79]

    Anthony Colas, Mehrdad Alvandipour, and Daisy Zhe Wang. 2022. GAP: A Graph-aware Language Model Framework for Knowledge Graph-to-Text Generation. In Proceedings of the 29th International Conference on Computational Linguistics. 5755–5769

  72. [80]

    Pei Ke, Haozhe Ji, Yu Ran, Xin Cui, Liwei Wang, Linfeng Song, Xiaoyan Zhu, and Minlie Huang. 2021. JointGT: Graph-Text Joint Representation Learning for Text Generation from Knowledge Graphs. InFindings of the Association for Computational Linguistics: ACL-IJCNLP 2021 . 2526–2538

  73. [81]

    Zhijing Jin, Qipeng Guo, Xipeng Qiu, and Zheng Zhang. 2020. GenWiki: A dataset of 1.3 million content-sharing text and graphs for unsupervised graph-to-text generation. In Proceedings of the 28th International Conference on Computational Linguistics. 2398–2409

  74. [82]

    Qipeng Guo, Zhijing Jin, Xipeng Qiu, Weinan Zhang, David Wipf, and Zheng Zhang. 2020. CycleGT: Unsupervised Graph-to-Text and Text-to-Graph Generation via Cycle Training. InProceedings of the 3rd International Workshop on Natural Language Generation from the Semantic Web (WebN...

  75. [83]

    Martin Schmitt, Sahand Sharifzadeh, Volker Tresp, and Hinrich Schütze. 2020. An Unsupervised Joint System for Text Generation from Knowledge Graphs and Semantic Parsing. In Proceedings of the 2020 Conference on Empirical Methods in Natural Language Processing (EMNLP) . 7117–7130

  76. [84]

    Bayu Distiawan, Jianzhong Qi, Rui Zhang, and Wei Wang. 2018. GTR-LSTM: A triple encoder for sentence generation from RDF data. In Proceedings of the 56th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers). 1627–1637

  77. [85]

    Leonardo FR Ribeiro, Yue Zhang, Claire Gardent, and Iryna Gurevych. 2020. Modeling global and local node contexts for text generation from knowledge graphs. Transactions of the Association for Computational Linguistics 8 (2020), 589–604

  78. [86]

    Zhikai Chen, Haitao Mao, Hang Li, Wei Jin, Hongzhi Wen, Xiaochi Wei, Shuaiqiang Wang, Dawei Yin, Wenqi Fan, Hui Liu, et al. 2024. Exploring the potential of large language models (llms) in learning on graphs. ACM SIGKDD Explorations Newsletter 25, 2 (2024), 42–61

  79. [87]

    Bonan Min, Hayley Ross, Elior Sulem, Amir Pouran Ben Veyseh, Thien Huu Nguyen, Oscar Sainz, Eneko Agirre, Ilana Heintz, and Dan Roth. 2023. Recent advances in natural language processing via large pre-trained language models: A survey. Comput. Surveys 56, 2 (2023), 1–40

  80. [88]

    Zhuohan Li, Siyuan Zhuang, Shiyuan Guo, Danyang Zhuo, Hao Zhang, Dawn Song, and Ion Stoica. 2021. Terapipe: Token-level pipeline parallelism for training large-scale language models. In International Conference on Machine Learning. PMLR, 6543–6552

  81. [89]

    Shengyin Sun, Yuxiang Ren, Chen Ma, and Xuecang Zhang. 2023. Large language models as topological structure enhancers for text-attributed graphs. arXiv preprint arXiv:2311.14324 (2023)

  82. [90]

    Wei Wei, Xubin Ren, Jiabin Tang, Qinyong Wang, Lixin Su, Suqi Cheng, Junfeng Wang, Dawei Yin, and Chao Huang

  83. [91]

    Bryan Perozzi, Bahare Fatemi, Dustin Zelle, Anton Tsitsulin, Mehran Kazemi, Rami Al-Rfou, and Jonathan Halcrow

  84. [92]

    Guilong Lu, Xiaolin Ju, Xiang Chen, Wenlong Pei, and Zhilong Cai. 2024. GRACE: Empowering LLM-based software vulnerability detection with graph structure and in-context learning. Journal of Systems and Software 212 (2024), 112031

  85. [93]

    arXiv preprint arXiv:2402.05862 (2024)

    Let your graph do the talking: Encoding structured data for llms. arXiv preprint arXiv:2402.05862 (2024)

  86. [94]

    Song Wang, Chen Chen, and Jundong Li. 2022. Graph few-shot learning with task-specific structures. Advances in Neural Information Processing Systems 35 (2022), 38925–38936

  87. [95]

    Xinru Wang, Hannah Kim, Sajjadur Rahman, Kushan Mitra, and Zhengjie Miao. 2024. Human-LLM collaborative annotation through effective verification of LLM labels. In Proceedings of the CHI Conference on Human Factors in Computing Systems. 1–21. , Vol. 1, No. 1, Article 1. Public...

  88. [96]

    Xinyu Lin, Wenjie Wang, Yongqi Li, Shuo Yang, Fuli Feng, Yinwei Wei, and Tat-Seng Chua. 2024. Data-efficient Fine-tuning for LLM-based Recommendation. In Proceedings of the 47th International ACM SIGIR Conference on Research and Development in Information Retrieval . 365–374

  89. [97]

    Mingchen Sun, Kaixiong Zhou, Xin He, Ying Wang, and Xin Wang. 2022. Gppt: Graph pre-training and prompt tuning to generalize graph neural networks. In Proceedings of the 28th ACM SIGKDD Conference on Knowledge Discovery and Data Mining. 1717–1727

  90. [98]

    Yao Xu, Shizhu He, Jiabei Chen, Zihao Wang, Yangqiu Song, Hanghang Tong, Kang Liu, and Jun Zhao. 2024. Generate- on-Graph: Treat LLM as both Agent and KG in Incomplete Knowledge Graph Question Answering. arXiv preprint arXiv:2404.14741 (2024)

  91. [99]

    Fengyi Wang, Guanghui Zhu, Chunfeng Yuan, and Yihua Huang. 2024. LLM-enhanced Cascaded Multi-level Learning on Temporal Heterogeneous Graphs. In Proceedings of the 47th International ACM SIGIR Conference on Research and Development in Information Retrieval . 512–521

  92. [100]

    Jinwoo Kim, Dat Nguyen, Seonwoo Min, Sungjun Cho, Moontae Lee, Honglak Lee, and Seunghoon Hong. 2022. Pure transformers are powerful graph learners. Advances in Neural Information Processing Systems 35 (2022), 14582–14595

  93. [101]

    Ling Yang, Ye Tian, Minkai Xu, Zhongyi Liu, Shenda Hong, Wei Qu, Wentao Zhang, Bin Cui, Muhan Zhang, and Jure Leskovec. 2023. Vqgraph: Graph vector-quantization for bridging gnns and mlps. arXiv preprint arXiv:2308.02117 (2023)

  94. [102]

    Ziwei Chai, Tianjie Zhang, Liang Wu, Kaiqiao Han, Xiaohai Hu, Xuanwen Huang, and Yang Yang. 2023. Graphllm: Boosting graph reasoning ability of large language model. arXiv preprint arXiv:2310.05845 (2023)

  95. [103]

    Mengmei Zhang, Mingwei Sun, Peng Wang, Shen Fan, Yanhu Mo, Xiaoxiao Xu, Hong Liu, Cheng Yang, and Chuan Shi. 2024. GraphTranslator: Aligning Graph Model to Large Language Model for Open-ended Tasks. In Proceedings of the ACM on Web Conference 2024 . 1003–1014

  96. [104]

    Runjin Chen, Tong Zhao, Ajay Jaiswal, Neil Shah, and Zhangyang Wang. 2024. Llaga: Large language and graph assistant. arXiv preprint arXiv:2402.08170 (2024)

  97. [105]

    Haiteng Zhao, Shengchao Liu, Ma Chang, Hannan Xu, Jie Fu, Zhihong Deng, Lingpeng Kong, and Qi Liu. 2023. Gimlet: A unified graph-text model for instruction-based molecule zero-shot learning. Advances in Neural Information Processing Systems 36 (2023), 5850–5887

  98. [106]

    Lianghao Xia, Ben Kao, and Chao Huang. 2024. Opengraph: Towards open graph foundation models. arXiv preprint arXiv:2403.01121 (2024)

  99. [107]

    Jiawei Zhang, Haopeng Zhang, Congying Xia, and Li Sun. 2020. Graph-bert: Only attention is needed for learning graph representations. arXiv preprint arXiv:2001.05140 (2020)

  100. [108]

    Jiabin Tang, Yuhao Yang, Wei Wei, Lei Shi, Long Xia, Dawei Yin, and Chao Huang. 2024. Higpt: Heterogeneous graph language model. arXiv preprint arXiv:2402.16024 (2024)

  101. [109]

    Feng Xia, Lei Wang, Tao Tang, Xin Chen, Xiangjie Kong, Giles Oatley, and Irwin King. 2023. CenGCN: Centralized Convolutional Networks with Vertex Imbalance for Scale-Free Graphs. IEEE Transactions on Knowledge and Data Engineering 35, 5 (2023), 4555–4569. https://doi.org/10.11...

  102. [110]

    Chen Ling, Carl Yang, and Liang Zhao. 2023. Motif-guided heterogeneous graph deep generation. Knowledge and Information Systems 65, 7 (2023), 3099–3124

  103. [111]

    Zhichun Guo, William Shiao, Shichang Zhang, Yozen Liu, Nitesh V Chawla, Neil Shah, and Tong Zhao. 2023. Linkless link prediction via relational distillation. In International Conference on Machine Learning . PMLR, 12012–12033

  104. [112]

    Sami Abu-El-Haija, Amol Kapoor, Bryan Perozzi, and Joonseok Lee. 2020. N-gcn: Multi-scale graph convolution for semi-supervised node classification. In uncertainty in artificial intelligence . PMLR, 841–851

  105. [113]

    Jinsong Chen, Siyu Jiang, and Kun He. 2024. NTFormer: A Composite Node Tokenized Graph Transformer for Node Classification. arXiv preprint arXiv:2406.19249 (2024)

  106. [114]

    Zhitao Wang, Yong Zhou, Litao Hong, Yuanhang Zou, Hanjing Su, and Shouzhi Chen. 2021. Pairwise learning for neural link prediction. arXiv preprint arXiv:2112.02936 (2021)

  107. [115]

    Uchenna Akujuobi, Michael Spranger, Sucheendra K Palaniappan, and Xiangliang Zhang. 2020. T-pair: Temporal node-pair embedding for automatic biomedical hypothesis generation. IEEE Transactions on Knowledge and Data Engineering 34, 6 (2020), 2988–3001

  108. [116]

    Jinsong Chen, Kaiyuan Gao, Gaichao Li, and Kun He. 2022. NAGphormer: A tokenized graph transformer for node classification in large graphs. arXiv preprint arXiv:2206.04910 (2022)

  109. [117]

    Harry Shomer, Yao Ma, Haitao Mao, Juanhui Li, Bo Wu, and Jiliang Tang. 2023. Adaptive Pairwise Encodings for Link Prediction. arXiv preprint arXiv:2310.11009 (2023)

  110. [118]

    Gaganpreet Jhajj, Xiaokun Zhang, Jerry Ryan Gustafson, Fuhua Lin, and Michael Pin-Chuan Lin. 2024. Educational Knowledge Graph Creation and Augmentation via LLMs. In International Conference on Intelligent Tutoring Systems . Springer, 292–304

  111. [119]

    Shuyuan Xu, Wenyue Hua, and Yongfeng Zhang. 2024. OpenP5: An Open-Source Platform for Developing, Training, and Evaluating LLM-based Recommender Systems. In Proceedings of the 47th International ACM SIGIR Conference on , Vol. 1, No. 1, Article 1. Publication date: January 2025...

  112. [120]

    Zhiyuan Lu, Yuan Fang, Cheng Yang, and Chuan Shi. 2024. Heterogeneous Graph Transformer with Poly-Tokenization. (8 2024), 2234–2242

  113. [121]

    Bo Jiang, Fei Xu, Ziyan Zhang, Jin Tang, and Feiping Nie. 2023. AGFormer: Efficient Graph Representation with Anchor-Graph Transformer. arXiv preprint arXiv:2305.07521 (2023)

  114. [122]

    Seongjun Yun, Minbyul Jeong, Raehyun Kim, Jaewoo Kang, and Hyunwoo J Kim. 2019. Graph transformer networks. Advances in neural information processing systems 32 (2019)

  115. [123]

    Zhiyuan Liu, Yaorui Shi, An Zhang, Enzhi Zhang, Kenji Kawaguchi, Xiang Wang, and Tat-Seng Chua. 2024. Rethinking tokenizer and decoder in masked graph modeling for molecules. Advances in Neural Information Processing Systems 36 (2024)

  116. [124]

    Xiaoxin He, Yijun Tian, Yifei Sun, Nitesh V Chawla, Thomas Laurent, Yann LeCun, Xavier Bresson, and Bryan Hooi

  117. [125]

    Jiongshu Wang, Jing Yang, Jiankang Deng, Hatice Gunes, and Siyang Song. 2024. Graph in Graph Neural Network. arXiv preprint arXiv:2407.00696 (2024)

  118. [126]

    Pengfei Liu, Yiming Ren, Jun Tao, and Zhixiang Ren. 2024. Git-mol: A multi-modal large language model for molecular science with graph, image, and text. Computers in biology and medicine 171 (2024), 108073

  119. [127]

    arXiv preprint arXiv:2402.07630 (2024)

    G-retriever: Retrieval-augmented generation for textual graph understanding and question answering. arXiv preprint arXiv:2402.07630 (2024)

  120. [128]

    Zheyuan Liu, Xiaoxin He, Yijun Tian, and Nitesh V Chawla. 2024. Can we soft prompt LLMs for graph learning tasks?. In Companion Proceedings of the ACM on Web Conference 2024 . 481–484

  121. [129]

    Runze Wang, Mingqi Yang, and Yanming Shen. 2024. Graph2Token: Make LLMs Understand Molecule Graphs. In ICML 2024 Workshop on Efficient and Accessible Foundation Models for Biological Discovery

  122. [130]

    Bing Su, Dazhao Du, Zhao Yang, Yujie Zhou, Jiangmeng Li, Anyi Rao, Hao Sun, Zhiwu Lu, and Ji-Rong Wen. 2022. A molecular multimodal foundation model associating molecule graphs with natural language. arXiv preprint arXiv:2209.05481 (2022)

  123. [131]

    He Cao, Zijing Liu, Xingyu Lu, Yuan Yao, and Yu Li. 2023. Instructmol: Multi-modal integration for building a versatile and reliable molecular assistant in drug discovery. arXiv preprint arXiv:2311.16208 (2023)

  124. [132]

    Qifang Zhao, Weidong Ren, Tianyu Li, Xiaoxiao Xu, and Hong Liu. 2023. Graphgpt: Graph learning with generative pre-trained transformers. arXiv preprint arXiv:2401.00529 (2023)

  125. [133]

    Zhiyuan Liu, Sihang Li, Yanchen Luo, Hao Fei, Yixin Cao, Kenji Kawaguchi, Xiang Wang, and Tat-Seng Chua. 2023. MolCA: Molecular graph-language modeling with cross-modal projector and uni-modal adapter. arXiv preprint arXiv:2310.12798 (2023)

  126. [134]

    Vlad Argatu, Aaron Haag, and Oliver Lohse. 2024. Joint Embeddings for Graph Instruction Tuning. arXiv preprint arXiv:2405.20684 (2024)

  127. [135]

    Yike Wu, Nan Hu, Guilin Qi, Sheng Bi, Jie Ren, Anhuan Xie, and Wei Song. 2023. Retrieve-rewrite-answer: A kg-to-text enhanced llms framework for knowledge graph question answering. arXiv preprint arXiv:2309.11206 (2023)

  128. [136]

    Will Hamilton, Zhitao Ying, and Jure Leskovec. 2017. Inductive representation learning on large graphs. Advances in neural information processing systems 30 (2017)

  129. [137]

    Zirui Guo, Lianghao Xia, Yanhua Yu, Yuling Wang, Zixuan Yang, Wei Wei, Liang Pang, Tat-Seng Chua, and Chao Huang. 2024. Graphedit: Large language models for graph structure learning. arXiv preprint arXiv:2402.15183 (2024)

  130. [138]

    Nicolas Keriven and Gabriel Peyré. 2019. Universal invariant and equivariant graph neural networks. Advances in Neural Information Processing Systems 32 (2019)

  131. [139]

    Qiming Wu, Zichen Chen, Will Corcoran, Misha Sra, and Ambuj K Singh. 2024. GraphEval2000: Benchmarking and Improving Large Language Models on Graph Datasets. arXiv preprint arXiv:2406.16176 (2024)

  132. [140]

    Yuhan Li, Peisong Wang, Xiao Zhu, Aochuan Chen, Haiyun Jiang, Deng Cai, Victor Wai Kin Chan, and Jia Li. 2024. GLBench: A Comprehensive Benchmark for Graph with Large Language Models. arXiv preprint arXiv:2407.07457 (2024)

  133. [141]

    Renqiang Luo, Tao Tang, Feng Xia, Jiaying Liu, Chengpei Xu, Leo Yu Zhang, Wei Xiang, and Chengqi Zhang. 2024. Algorithmic Fairness: A Tolerance Perspective. arXiv preprint arXiv:2405.09543 (2024)

  134. [142]

    Vıctor Garcia Satorras, Emiel Hoogeboom, and Max Welling. 2021. E (n) equivariant graph neural networks. In International conference on machine learning . PMLR, 9323–9332

  135. [143]

    Chaitanya K Joshi, Cristian Bodnar, Simon V Mathis, Taco Cohen, and Pietro Lio. 2023. On the expressive power of geometric graph neural networks. In International conference on machine learning . PMLR, 15330–15355

  136. [145]

    Yushun Dong, Jing Ma, Song Wang, Chen Chen, and Jundong Li. 2023. Fairness in graph mining: A survey. IEEE Transactions on Knowledge and Data Engineering 35, 10 (2023), 10583–10602. , Vol. 1, No. 1, Article 1. Publication date: January 2025

  137. [2024]

    In Proceedings of the 17th ACM International Conference on Web Search and Data Mining

    Llmrec: Large language models with graph augmentation for recommendation. In Proceedings of the 17th ACM International Conference on Web Search and Data Mining . 806–815

Pith tools

Reviewed August 10, 2026 · model on record in the stance chip above.