pith. machine review for the scientific record. sign in

arxiv: 2410.05779 · v3 · submitted 2024-10-08 · 💻 cs.IR · cs.AI

Recognition: 2 theorem links

· Lean Theorem

LightRAG: Simple and Fast Retrieval-Augmented Generation

Chao Huang, Lianghao Xia, Tu Ao, Yanhua Yu, Zirui Guo

Pith reviewed 2026-05-13 01:55 UTC · model grok-4.3

classification 💻 cs.IR cs.AI
keywords retrieval-augmented generationgraph structuresdual-level retrievalincremental updateslarge language modelsinformation retrievalcontextual awareness
0
0 comments X

The pith

LightRAG incorporates graph structures into retrieval-augmented generation to improve accuracy, efficiency, and contextual awareness in LLM responses.

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

The paper proposes LightRAG as a new framework for retrieval-augmented generation that addresses limitations in existing systems by using graph structures for text indexing and retrieval. It introduces a dual-level retrieval system to capture both low-level and high-level knowledge, along with incremental updates for changing data. A sympathetic reader would care because this could lead to more reliable and faster AI systems that handle complex information dependencies better than flat vector-based approaches.

Core claim

LightRAG integrates graph structures into the indexing and retrieval processes of RAG systems, employing a dual-level retrieval mechanism that combines low-level and high-level knowledge discovery, and supports incremental updates to maintain performance in dynamic environments, resulting in improved retrieval accuracy and efficiency as validated by experiments.

What carries the argument

The dual-level retrieval system combined with graph structures for entity and relationship retrieval, which works by enhancing comprehensive information capture and efficient related entity lookup.

Load-bearing premise

That incorporating graph structures and a dual-level retrieval system will consistently enhance contextual awareness and response quality without creating new issues in varied and evolving data settings.

What would settle it

An experiment where LightRAG shows no significant improvement or lower performance than baseline RAG methods on standard benchmarks for retrieval accuracy or response quality.

read the original abstract

Retrieval-Augmented Generation (RAG) systems enhance large language models (LLMs) by integrating external knowledge sources, enabling more accurate and contextually relevant responses tailored to user needs. However, existing RAG systems have significant limitations, including reliance on flat data representations and inadequate contextual awareness, which can lead to fragmented answers that fail to capture complex inter-dependencies. To address these challenges, we propose LightRAG, which incorporates graph structures into text indexing and retrieval processes. This innovative framework employs a dual-level retrieval system that enhances comprehensive information retrieval from both low-level and high-level knowledge discovery. Additionally, the integration of graph structures with vector representations facilitates efficient retrieval of related entities and their relationships, significantly improving response times while maintaining contextual relevance. This capability is further enhanced by an incremental update algorithm that ensures the timely integration of new data, allowing the system to remain effective and responsive in rapidly changing data environments. Extensive experimental validation demonstrates considerable improvements in retrieval accuracy and efficiency compared to existing approaches. We have made our LightRAG open-source and available at the link: https://github.com/HKUDS/LightRAG

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, simulated authors' rebuttal, and a circularity audit. Tearing a paper down is the easy half of reading it; the pith above is the substance, this is the friction.

Referee Report

2 major / 3 minor

Summary. The paper proposes LightRAG, a RAG framework that augments standard vector-based retrieval with graph structures for indexing and retrieval, a dual-level (low- and high-level) retrieval mechanism, and an incremental update algorithm intended to support timely integration of new data in dynamic environments. It claims that these components together yield considerable gains in retrieval accuracy and efficiency relative to prior RAG systems, supported by experimental validation on multiple benchmarks, and releases the implementation as open source.

Significance. If the empirical results hold after the requested clarifications, the work would provide a practical, lightweight way to combine graph and vector representations for better handling of entity relationships while adding support for incremental updates—an under-explored aspect in current RAG literature. The open-source release is a clear strength that enables direct reproducibility and follow-on work.

major comments (2)
  1. [Experiments section] Experiments section: the reported results use standard static benchmarks with one-time indexing. No ablation or sequential-update experiments are presented that track retrieval accuracy, latency, or failure modes after each incremental document addition; this leaves the central claim about responsiveness in rapidly changing data environments untested and potentially overstated.
  2. [§3.2] §3.2 (Dual-level Retrieval): the description of how low-level and high-level retrieval results are fused (e.g., scoring, deduplication, or context assembly) is high-level and lacks pseudocode or precise algorithmic steps. Without this, it is impossible to verify whether the claimed improvement in contextual awareness is due to the graph component or to other unstated heuristics.
minor comments (3)
  1. [Abstract] Abstract: the phrase 'considerable improvements' is used without any numeric deltas, baseline names, or dataset identifiers; adding a single sentence with key metrics would make the claim immediately evaluable.
  2. [Figure 2] Figure 2 and §4.1: axis labels and legend entries are too small to read in the provided PDF rendering; increasing font size and adding a caption that explicitly states what each curve represents would improve clarity.
  3. [Related Work] Related Work: several recent graph-RAG papers (e.g., GraphRAG, HippoRAG) are cited only in passing; a short comparison table highlighting differences in indexing cost and update mechanism would strengthen the positioning.

Simulated Author's Rebuttal

2 responses · 0 unresolved

We thank the referee for the constructive comments and for recognizing the potential of LightRAG. We address each major comment point by point below and describe the revisions we will make.

read point-by-point responses
  1. Referee: [Experiments section] Experiments section: the reported results use standard static benchmarks with one-time indexing. No ablation or sequential-update experiments are presented that track retrieval accuracy, latency, or failure modes after each incremental document addition; this leaves the central claim about responsiveness in rapidly changing data environments untested and potentially overstated.

    Authors: We agree that the current experiments rely on standard static benchmarks with one-time indexing and do not include sequential-update ablations that track accuracy, latency, or failure modes after successive document additions. While the incremental update algorithm is formally described in Section 4 (including its design for efficient, non-reindexing updates), the empirical validation of its behavior in dynamic settings is indeed absent. In the revised manuscript we will add a new set of sequential-update experiments on at least two benchmarks, reporting retrieval accuracy, latency, and any observed failure modes after each incremental addition. These results will directly support the claims regarding responsiveness in rapidly changing environments. revision: yes

  2. Referee: [§3.2] §3.2 (Dual-level Retrieval): the description of how low-level and high-level retrieval results are fused (e.g., scoring, deduplication, or context assembly) is high-level and lacks pseudocode or precise algorithmic steps. Without this, it is impossible to verify whether the claimed improvement in contextual awareness is due to the graph component or to other unstated heuristics.

    Authors: We acknowledge that Section 3.2 currently presents the dual-level retrieval and fusion process at a conceptual level without pseudocode or fine-grained algorithmic steps for scoring, deduplication, and context assembly. This makes it difficult to isolate the contribution of the graph structures. In the revised version we will expand §3.2 with a precise description of the fusion procedure, including the scoring function, deduplication criteria, and context-assembly logic, accompanied by pseudocode. The added detail will explicitly show how the graph-based low- and high-level results are combined and will clarify that the observed gains stem from the graph augmentation rather than unstated heuristics. revision: yes

Circularity Check

0 steps flagged

No circularity: empirical systems proposal without derivation chain

full rationale

The paper presents LightRAG as an engineering framework combining graph indexing, dual-level retrieval, and an incremental update algorithm, validated through experiments on retrieval accuracy and efficiency. No equations, fitted parameters, or mathematical derivations appear in the provided text or abstract that reduce any claimed result to an input by construction. The incremental update is described as an algorithmic capability for dynamic environments but is not shown to be tautological with any fitted quantity or self-citation. Central claims rest on experimental comparisons rather than self-referential definitions or uniqueness theorems imported from prior author work. This is a standard empirical systems contribution whose validity is independent of any internal reduction.

Axiom & Free-Parameter Ledger

0 free parameters · 0 axioms · 0 invented entities

This is an applied engineering paper; no free parameters, mathematical axioms, or postulated entities are introduced in the abstract.

pith-pipeline@v0.9.0 · 5499 in / 1040 out tokens · 43105 ms · 2026-05-13T01:55:07.190118+00:00 · methodology

discussion (0)

Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.

Lean theorems connected to this paper

Citations machine-checked in the Pith Canon. Every link opens the source theorem in the public Lean library.

Forward citations

Cited by 26 Pith papers

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

  1. DeepRefine: Agent-Compiled Knowledge Refinement via Reinforcement Learning

    cs.CL 2026-05 unverdicted novelty 7.0

    DeepRefine refines agent-compiled knowledge bases via multi-turn abductive diagnosis and RL training with a GBD reward, yielding consistent downstream task gains.

  2. SEM-RAG: Structure-Preserving Multimodal Graph Compilation and Entropy-Guided Retrieval for Telecommunication Standards

    eess.SP 2026-05 unverdicted novelty 7.0

    SEM-RAG compiles telecommunication standards into structure-preserving graphs and uses entropy-guided retrieval to reach 94.1% accuracy on TeleQnA and 93.8% on ORAN-Bench-13K while reducing indexing token usage compar...

  3. XGRAG: A Graph-Native Framework for Explaining KG-based Retrieval-Augmented Generation

    cs.AI 2026-04 unverdicted novelty 7.0

    XGRAG uses graph perturbations to quantify component contributions in GraphRAG and achieves 14.81% better explanation quality than text-based baselines on QA datasets, with correlations to graph centrality.

  4. OptiVerse: A Comprehensive Benchmark towards Optimization Problem Solving

    cs.CL 2026-04 unverdicted novelty 7.0

    OptiVerse is a new benchmark spanning neglected optimization domains that shows LLMs suffer sharp accuracy drops on hard problems due to modeling and logic errors, with a Dual-View Auditor Agent proposed to improve pe...

  5. Structure Guided Retrieval-Augmented Generation for Factual Queries

    cs.IR 2026-04 unverdicted novelty 7.0

    SG-RAG frames retrieval as subgraph matching to ensure LLMs meet every condition in factual queries and reports large gains over baselines on a new 120k-pair ERQA dataset.

  6. Do We Still Need GraphRAG? Benchmarking RAG and GraphRAG for Agentic Search Systems

    cs.IR 2026-04 unverdicted novelty 7.0

    Agentic search narrows the gap between dense RAG and GraphRAG but does not remove GraphRAG's advantage on complex multi-hop reasoning.

  7. Cognifold: Always-On Proactive Memory via Cognitive Folding

    cs.AI 2026-05 unverdicted novelty 6.0

    Cognifold is a new proactive memory architecture that folds event streams into emergent cognitive structures by extending complementary learning systems theory with a prefrontal intent layer and graph topology self-or...

  8. SAGE: A Self-Evolving Agentic Graph-Memory Engine for Structure-Aware Associative Memory

    cs.AI 2026-05 unverdicted novelty 6.0

    SAGE is a self-evolving agentic graph-memory engine that dynamically constructs and refines structured memory graphs via writer-reader feedback, yielding performance gains on multi-hop QA, open-domain retrieval, and l...

  9. SkillRAE: Agent Skill-Based Context Compilation for Retrieval-Augmented Execution

    cs.CL 2026-05 unverdicted novelty 6.0

    SkillRAE organizes skills into a graph and compiles compact, grounded contexts for LLM agents, yielding 11.7% gains on SkillsBench over prior RAE methods.

  10. FT-RAG: A Fine-grained Retrieval-Augmented Generation Framework for Complex Table Reasoning

    cs.CL 2026-05 unverdicted novelty 6.0

    FT-RAG introduces a fine-grained graph-based retrieval framework for tables plus a new 9870-pair benchmark, reporting 23.5% and 59.2% gains in table- and cell-level hit rates and 62.2% higher exact-value recall over b...

  11. MUDY: Multi-Granular Dynamic Candidate Contextualization for Unsupervised Keyphrase Extraction

    cs.IR 2026-05 unverdicted novelty 6.0

    MUDY improves unsupervised keyphrase extraction by combining prompt-based scoring with candidate-aware weighting and self-attention-based multi-granular scoring to capture both local and global contextual salience, ou...

  12. Dual-Cluster Memory Agent: Resolving Multi-Paradigm Ambiguity in Optimization Problem Solving

    cs.CL 2026-04 unverdicted novelty 6.0

    DCM-Agent improves LLM performance on multi-paradigm optimization problems by 11-21% via dual-cluster memory construction and dynamic inference guidance.

  13. EmbodiedLGR: Integrating Lightweight Graph Representation and Retrieval for Semantic-Spatial Memory in Robotic Agents

    cs.RO 2026-04 unverdicted novelty 6.0

    A hybrid semantic graph and retrieval-augmented system with parameter-efficient VLMs achieves state-of-the-art inference and querying speeds on embodied navigation tasks with competitive accuracy.

  14. EvoRAG: Making Knowledge Graph-based RAG Automatically Evolve through Feedback-driven Backpropagation

    cs.DB 2026-04 unverdicted novelty 6.0

    EvoRAG adds a feedback-driven backpropagation step that attributes response quality to individual knowledge-graph triplets and updates the graph to raise reasoning accuracy by 7.34 percent over prior KG-RAG methods.

  15. Transforming External Knowledge into Triplets for Enhanced Retrieval in RAG of LLMs

    cs.CL 2026-04 unverdicted novelty 6.0

    Tri-RAG turns external knowledge into Condition-Proof-Conclusion triplets and retrieves via the Condition anchor to improve efficiency and quality in LLM RAG.

  16. GAM: Hierarchical Graph-based Agentic Memory for LLM Agents

    cs.AI 2026-04 unverdicted novelty 6.0

    GAM decouples event-level memory encoding from topic-level consolidation in LLM agents using hierarchical graphs to reduce interference and improve long-term coherence and retrieval.

  17. MicroWorld: Empowering Multimodal Large Language Models to Bridge the Microscopic Domain Gap with Multimodal Attribute Graph

    cs.CV 2026-05 unverdicted novelty 5.0

    MicroWorld constructs a multimodal attributed property graph from scientific image-caption data and augments MLLM prompts via retrieval to raise Qwen3-VL-8B performance by 37.5% on MicroVQA and 6% on MicroBench.

  18. TrajRAG: Retrieving Geometric-Semantic Experience for Zero-Shot Object Navigation

    cs.CV 2026-05 unverdicted novelty 5.0

    TrajRAG uses a topological-polar trajectory representation and hierarchical retrieval to accumulate and reuse geometric-semantic navigation experiences, improving zero-shot ObjectNav on MP3D and HM3D benchmarks.

  19. LLM-Oriented Information Retrieval: A Denoising-First Perspective

    cs.IR 2026-05 unverdicted novelty 5.0

    Denoising to maximize usable evidence density and verifiability is becoming the primary bottleneck in LLM-oriented information retrieval, conceptualized via a four-stage framework and addressed through a pipeline taxo...

  20. Retrieval Is Not Enough: Why Organizational AI Needs Epistemic Infrastructure

    cs.AI 2026-04 unverdicted novelty 5.0

    OIDA adds typed knowledge objects, decay-based importance scores, contradiction edges, and an inverse-decay QUESTION primitive for ignorance to raise epistemic fidelity beyond retrieval.

  21. CodaRAG: Connecting the Dots with Associativity Inspired by Complementary Learning

    cs.CL 2026-04 unverdicted novelty 5.0

    CodaRAG improves RAG by using a CLS-inspired three-stage pipeline of knowledge consolidation, multi-dimensional associative navigation, and interference elimination, delivering 7-11% gains on GraphRAG-Bench for factua...

  22. From Exposure to Internalization: Dual-Stream Calibration for In-context Clinical Reasoning

    q-bio.QM 2026-04 unverdicted novelty 5.0

    Dual-Stream Calibration uses entropy minimization and iterative meta-learning at test time to internalize clinical evidence and outperform standard in-context learning baselines on medical tasks.

  23. AssemPlanner: A Multi-Agent Based Task Planning Framework for Flexible Assembly System

    cs.RO 2026-05 unverdicted novelty 4.0

    AssemPlanner is a ReAct-based multi-agent system that autonomously generates production plans from natural language inputs by integrating scheduling, knowledge, line balancing, and scene graph feedback.

  24. UrbanClipAtlas: A Visual Analytics Framework for Event and Scene Retrieval in Urban Videos

    cs.HC 2026-04 unverdicted novelty 4.0

    UrbanClipAtlas integrates RAG, taxonomy-aware extraction, and video grounding into a chat interface for retrieving and interpreting events in long urban videos from street intersections.

  25. Beyond the Parameters: A Technical Survey of Contextual Enrichment in Large Language Models: From In-Context Prompting to Causal Retrieval-Augmented Generation

    cs.CL 2026-04 unverdicted novelty 4.0

    The survey unifies LLM augmentation techniques along the single axis of structured context supplied at inference time and supplies a literature screening protocol plus deployment decision framework.

  26. Position: How can Graphs Help Large Language Models?

    cs.AI 2026-05 unverdicted novelty 3.0

    Graphs can help LLMs reduce hallucinations, boost reasoning via prompting techniques, and better process structured data.

Reference graph

Works this paper leans on

48 extracted references · 48 canonical work pages · cited by 26 Pith papers · 4 internal anchors

  1. [2]

    arXiv preprint arXiv:2402.10790 , year=

    In search of needles in a 10m haystack: Recurrent memory finds what llms miss , author=. arXiv preprint arXiv:2402.10790 , year=

  2. [3]

    Transactions of the Association for Computational Linguistics , volume=

    Lost in the middle: How language models use long contexts , author=. Transactions of the Association for Computational Linguistics , volume=. 2024 , publisher=

  3. [4]

    HotpotQA: A Dataset for Diverse, Explainable Multi-hop Question Answering

    HotpotQA: A dataset for diverse, explainable multi-hop question answering , author=. arXiv preprint arXiv:1809.09600 , year=

  4. [5]

    International Conference on Learning Representations (ICLR) , year=

    One For All: Towards Training One Graph Model For All Classification Tasks , author=. International Conference on Learning Representations (ICLR) , year=

  5. [6]

    Advances in Information Retrieval: 31th European Conference on IR Research, ECIR 2009, Toulouse, France, April 6-9, 2009

    Classifying and characterizing query intent , author=. Advances in Information Retrieval: 31th European Conference on IR Research, ECIR 2009, Toulouse, France, April 6-9, 2009. Proceedings 31 , pages=. 2009 , organization=

  6. [7]

    Information Processing & Management , volume=

    Determining the informational, navigational, and transactional intent of Web queries , author=. Information Processing & Management , volume=. 2008 , publisher=

  7. [8]

    Transactions of the Association for Computational Linguistics (TACL) , volume=

    In-context retrieval-augmented language models , author=. Transactions of the Association for Computational Linguistics (TACL) , volume=. 2023 , publisher=

  8. [9]

    International Conference on Empirical Methods in Natural Language Processing (EMNLP) , pages=

    GRENADE: Graph-Centric Language Model for Self-Supervised Representation Learning on Text-Attributed Graphs , author=. International Conference on Empirical Methods in Natural Language Processing (EMNLP) , pages=

  9. [13]

    A Survey of Large Language Models

    A survey of large language models , author=. arXiv preprint arXiv:2303.18223 , year=

  10. [14]

    International Conference on Knowledge Discovery and Data Mining (KDD) , pages=

    A survey on rag meeting llms: Towards retrieval-augmented large language models , author=. International Conference on Knowledge Discovery and Data Mining (KDD) , pages=

  11. [15]

    Chawla, Thomas Laurent, Yann LeCun, Xavier Bresson, and Bryan Hooi

    G-retriever: Retrieval-augmented generation for textual graph understanding and question answering , author=. arXiv preprint arXiv:2402.07630 , year=

  12. [16]

    arXiv preprint arXiv:2306.04136 , year=

    Knowledge-augmented language model prompting for zero-shot knowledge graph question answering , author=. arXiv preprint arXiv:2306.04136 , year=

  13. [17]

    ACM International Conference on Research and Development in Information Retrieval (SIGIR) , pages=

    Graphgpt: Graph instruction tuning for large language models , author=. ACM International Conference on Research and Development in Information Retrieval (SIGIR) , pages=

  14. [18]

    International Conference on Machine Learning (ICML) , year=

    LLaGA: Large Language and Graph Assistant , author=. International Conference on Machine Learning (ICML) , year=

  15. [19]

    ACM International Conference on Research and Development in Information Retrieval (SIGIR) , pages=

    RAG-Ex: A Generic Framework for Explaining Retrieval Augmented Generation , author=. ACM International Conference on Research and Development in Information Retrieval (SIGIR) , pages=

  16. [20]

    International Conference of the European Chapter of the Association for Computational Linguistics (EACL) , pages=

    RAGAs: Automated Evaluation of Retrieval Augmented Generation , author=. International Conference of the European Chapter of the Association for Computational Linguistics (EACL) , pages=

  17. [21]

    ACM International Conference on Research and Development in Information Retrieval (SIGIR) , pages=

    Evaluating retrieval quality in retrieval-augmented generation , author=. ACM International Conference on Research and Development in Information Retrieval (SIGIR) , pages=

  18. [22]

    International Conference on Knowledge Discovery and Data Mining (KDD) , pages=

    R-Eval: A Unified Toolkit for Evaluating Domain Knowledge of Retrieval Augmented Large Language Models , author=. International Conference on Knowledge Discovery and Data Mining (KDD) , pages=

  19. [24]

    International Conference on Neural Information Processing Systems (NeurIPS) , volume=

    Recipe for a general, powerful, scalable graph transformer , author=. International Conference on Neural Information Processing Systems (NeurIPS) , volume=

  20. [25]

    ICML , pages=

    How powerful are spectral graph neural networks , author=. ICML , pages=. 2022 , organization=

  21. [27]

    International Conference on Knowledge Discovery and Data Mining (KDD) , pages=

    Graph-aware language model pre-training on a large graph corpus can help multiple graph applications , author=. International Conference on Knowledge Discovery and Data Mining (KDD) , pages=

  22. [28]

    arXiv preprint arXiv:2402.15183 , year=

    Graphedit: Large language models for graph structure learning , author=. arXiv preprint arXiv:2402.15183 , year=

  23. [29]

    Proceedings of the 30th ACM SIGKDD Conference on Knowledge Discovery and Data Mining , pages=

    Higpt: Heterogeneous graph language model , author=. Proceedings of the 30th ACM SIGKDD Conference on Knowledge Discovery and Data Mining , pages=

  24. [30]

    arXiv preprint arXiv:2305.19523 , year=

    Explanations as Features: LLM-Based Features for Text-Attributed Graphs , author=. arXiv preprint arXiv:2305.19523 , year=

  25. [31]

    arXiv preprint arXiv:2403.01121 , year=

    Opengraph: Towards open graph foundation models , author=. arXiv preprint arXiv:2403.01121 , year=

  26. [32]

    arXiv preprint arXiv:2310.09872 , year=

    Empower text-attributed graphs learning with large language models (llms) , author=. arXiv preprint arXiv:2310.09872 , year=

  27. [33]

    2024 , eprint=

    MemoRAG: Moving towards Next-Gen RAG Via Memory-Inspired Knowledge Discovery , author=. 2024 , eprint=

  28. [36]

    Congrat: Self-supervised contrastive pretraining for joint graph and text embeddings

    William Brannon, Suyash Fulay, Hang Jiang, Wonjune Kang, Brandon Roy, Jad Kabbara, and Deb Roy. Congrat: Self-supervised contrastive pretraining for joint graph and text embeddings. arXiv preprint arXiv:2305.14321, 2023

  29. [37]

    Rq-rag: Learning to refine queries for retrieval augmented generation

    Chi-Min Chan, Chunpu Xu, Ruibin Yuan, Hongyin Luo, Wei Xue, Yike Guo, and Jie Fu. Rq-rag: Learning to refine queries for retrieval augmented generation. arXiv preprint arXiv:2404.00610, 2024

  30. [38]

    Llaga: Large language and graph assistant

    Runjin Chen, Tong Zhao, AJAY KUMAR JAISWAL, Neil Shah, and Zhangyang Wang. Llaga: Large language and graph assistant. In International Conference on Machine Learning (ICML), 2024

  31. [39]

    From Local to Global: A Graph RAG Approach to Query-Focused Summarization

    Darren Edge, Ha Trinh, Newman Cheng, Joshua Bradley, Alex Chao, Apurva Mody, Steven Truitt, and Jonathan Larson. From local to global: A graph rag approach to query-focused summarization. arXiv preprint arXiv:2404.16130, 2024

  32. [40]

    Ragas: Automated evaluation of retrieval augmented generation

    Shahul Es, Jithin James, Luis Espinosa Anke, and Steven Schockaert. Ragas: Automated evaluation of retrieval augmented generation. In International Conference of the European Chapter of the Association for Computational Linguistics (EACL), pp.\ 150--158, 2024

  33. [41]

    A survey on rag meeting llms: Towards retrieval-augmented large language models

    Wenqi Fan, Yujuan Ding, Liangbo Ning, Shijie Wang, Hengyun Li, Dawei Yin, Tat-Seng Chua, and Qing Li. A survey on rag meeting llms: Towards retrieval-augmented large language models. In International Conference on Knowledge Discovery and Data Mining (KDD), pp.\ 6491--6501, 2024

  34. [42]

    Precise zero-shot dense retrieval without relevance labels

    Luyu Gao, Xueguang Ma, Jimmy Lin, and Jamie Callan. Precise zero-shot dense retrieval without relevance labels. arXiv preprint arXiv:2212.10496, 2022

  35. [43]

    Retrieval-Augmented Generation for Large Language Models: A Survey

    Yunfan Gao, Yun Xiong, Xinyu Gao, Kangxiang Jia, Jinliu Pan, Yuxi Bi, Yi Dai, Jiawei Sun, and Haofen Wang. Retrieval-augmented generation for large language models: A survey. arXiv preprint arXiv:2312.10997, 2023

  36. [44]

    Grenade: Graph-centric language model for self-supervised representation learning on text-attributed graphs

    Yichuan Li, Kaize Ding, and Kyumin Lee. Grenade: Graph-centric language model for self-supervised representation learning on text-attributed graphs. In International Conference on Empirical Methods in Natural Language Processing (EMNLP), pp.\ 2745--2757, 2023

  37. [45]

    One for all: Towards training one graph model for all classification tasks

    Hao Liu, Jiarui Feng, Lecheng Kong, Ningyue Liang, Dacheng Tao, Yixin Chen, and Muhan Zhang. One for all: Towards training one graph model for all classification tasks. In International Conference on Learning Representations (ICLR), 2024

  38. [46]

    Crud-rag: A comprehensive chinese benchmark for retrieval-augmented generation of large language models

    Yuanjie Lyu, Zhiyu Li, Simin Niu, Feiyu Xiong, Bo Tang, Wenjin Wang, Hao Wu, Huanyong Liu, Tong Xu, and Enhong Chen. Crud-rag: A comprehensive chinese benchmark for retrieval-augmented generation of large language models. arXiv preprint arXiv:2401.17043, 2024

  39. [47]

    Memorag: Moving towards next-gen rag via memory-inspired knowledge discovery, 2024

    Hongjin Qian, Peitian Zhang, Zheng Liu, Kelong Mao, and Zhicheng Dou. Memorag: Moving towards next-gen rag via memory-inspired knowledge discovery, 2024. URL https://arxiv.org/abs/2409.05591

  40. [48]

    In-context retrieval-augmented language models

    Ori Ram, Yoav Levine, Itay Dalmedigos, Dor Muhlgay, Amnon Shashua, Kevin Leyton-Brown, and Yoav Shoham. In-context retrieval-augmented language models. Transactions of the Association for Computational Linguistics (TACL), 11: 0 1316--1331, 2023

  41. [49]

    Recipe for a general, powerful, scalable graph transformer

    Ladislav Ramp \'a s ek, Michael Galkin, Vijay Prakash Dwivedi, Anh Tuan Luu, Guy Wolf, and Dominique Beaini. Recipe for a general, powerful, scalable graph transformer. International Conference on Neural Information Processing Systems (NeurIPS), 35: 0 14501--14515, 2022

  42. [50]

    Evaluating retrieval quality in retrieval-augmented generation

    Alireza Salemi and Hamed Zamani. Evaluating retrieval quality in retrieval-augmented generation. In ACM International Conference on Research and Development in Information Retrieval (SIGIR), pp.\ 2395--2400, 2024

  43. [51]

    Rag-ex: A generic framework for explaining retrieval augmented generation

    Viju Sudhi, Sinchana Ramakanth Bhat, Max Rudat, and Roman Teucher. Rag-ex: A generic framework for explaining retrieval augmented generation. In ACM International Conference on Research and Development in Information Retrieval (SIGIR), pp.\ 2776--2780, 2024

  44. [52]

    Graphgpt: Graph instruction tuning for large language models

    Jiabin Tang, Yuhao Yang, Wei Wei, Lei Shi, Lixin Su, Suqi Cheng, Dawei Yin, and Chao Huang. Graphgpt: Graph instruction tuning for large language models. In ACM International Conference on Research and Development in Information Retrieval (SIGIR), pp.\ 491--500, 2024

  45. [53]

    R-eval: A unified toolkit for evaluating domain knowledge of retrieval augmented large language models

    Shangqing Tu, Yuanchun Wang, Jifan Yu, Yuyang Xie, Yaran Shi, Xiaozhi Wang, Jing Zhang, Lei Hou, and Juanzi Li. R-eval: A unified toolkit for evaluating domain knowledge of retrieval augmented large language models. In International Conference on Knowledge Discovery and Data Mining (KDD), pp.\ 5813--5824, 2024

  46. [54]

    Graph-aware language model pre-training on a large graph corpus can help multiple graph applications

    Han Xie, Da Zheng, Jun Ma, Houyu Zhang, Vassilis N Ioannidis, Xiang Song, Qing Ping, Sheng Wang, Carl Yang, Yi Xu, et al. Graph-aware language model pre-training on a large graph corpus can help multiple graph applications. In International Conference on Knowledge Discovery and Data Mining (KDD), pp.\ 5270--5281, 2023

  47. [55]

    Rankrag: Unifying context ranking with retrieval-augmented generation in llms

    Yue Yu, Wei Ping, Zihan Liu, Boxin Wang, Jiaxuan You, Chao Zhang, Mohammad Shoeybi, and Bryan Catanzaro. Rankrag: Unifying context ranking with retrieval-augmented generation in llms. arXiv preprint arXiv:2407.02485, 2024

  48. [56]

    Retrieval-augmented generation for ai-generated content: A survey

    Penghao Zhao, Hailin Zhang, Qinhan Yu, Zhengren Wang, Yunteng Geng, Fangcheng Fu, Ling Yang, Wentao Zhang, and Bin Cui. Retrieval-augmented generation for ai-generated content: A survey. arXiv preprint arXiv:2402.19473, 2024