paper-with-me

홈 › Papers

KET-RAG: A Cost-Efficient Multi-Granular Indexing Framework for Graph-RAG

2025-02-13 · Yiqian Huang, Shiqi Zhang, Xiaokui Xiao

Graph-RAG constructs a knowledge graph from text chunks to improve retrieval in Large Language Model (LLM)-based question answering. It is particularly useful in domains such as biomedicine, law, and political science, where retrieval often requires multi-hop reasoning over proprietary documents. Some existing Graph-RAG systems construct KNN graphs based on text chunk relevance, but this coarse-grained approach fails to capture entity relationships within texts, leading to sub-par retrieval and generation quality. To address this, recent solutions leverage LLMs to extract entities and relationships from text chunks, constructing triplet-based knowledge graphs. However, this approach incurs significant indexing costs, especially for large document collections. To ensure a good result accuracy while reducing the indexing cost, we propose KET-RAG, a multi-granular indexing framework. KET-RAG first identifies a small set of key text chunks and leverages an LLM to construct a knowledge graph skeleton. It then builds a text-keyword bipartite graph from all text chunks, serving as a lightweight alternative to a full knowledge graph. During retrieval, KET-RAG searches both structures: it follows the local search strategy of existing Graph-RAG systems on the skeleton while mimicking this search on the bipartite graph to improve retrieval quality. We evaluate eight solutions on two real-world datasets, demonstrating that KET-RAG outperforms all competitors in indexing cost, retrieval effectiveness, and generation quality. Notably, it achieves comparable or superior retrieval quality to Microsoft's Graph-RAG while reducing indexing costs by over an order of magnitude. Additionally, it improves the generation quality by up to 32.4% while lowering indexing costs by around 20%.

📄 PDF Abstract BibTeX arXiv:2502.09304

Code (1)

waetr/KET-RAG 공식 구현

Tasks

Knowledge GraphsLarge Language ModelQuestion AnsweringRAGRetrievalTriplet

Methods 이 논문이 사용한 방법론

SET Dynamic Sparse Training method where weight mask is updated randomly periodically

Similar Papers 제목 키워드 기반

Query-Centric Graph Retrieval Augmented Generation

2025-09-25 · Yaxiong Wu, Jianyuan Bo, Yongyue Zhang, Sheng Liang 외 arxiv

Graph-based retrieval-augmented generation (RAG) enriches large language models (LLMs) with external knowledge for long-context understanding and multi-hop reasoning, but existing methods face a granularity dilemma: fine…

Long-Context UnderstandingQuestion Answering

Coarse Indexing, Fine Evidence: Decoupling Temporal Granularity in Long-Video RAG

2026-08-24 · Zhe Jin, Zhimin Lin, Bin Zheng, Junhua Fang 외 arxiv

Graph-based retrieval-augmented generation (RAG) provides a scalable paradigm for long-video understanding, but existing systems typically inherit a fixed temporal granularity from video segmentation when constructing th…

Video SegmentationAnswer Generation

Clue-RAG: Towards Accurate and Cost-Efficient Graph-based RAG via Multi-Partite Graph and Query-Driven Iterative Retrieval

2025-07-11 · Yaodong Su, Yixiang Fang, Yingli Zhou, Quanqing Xu 외 arxiv

Despite the remarkable progress of Large Language Models (LLMs), their performance in question answering (QA) remains limited by the lack of domain-specific and up-to-date knowledge. Retrieval-Augmented Generation (RAG) …

Question Answering

LLM-Centric RAG with Multi-Granular Indexing and Confidence Constraints

2025-10-30 · Xiaofan Guo, Yaxuan Luan, Yue Kang, Xiangchen Song 외 arxiv

This paper addresses the issues of insufficient coverage, unstable results, and limited reliability in retrieval-augmented generation under complex knowledge environments, and proposes a confidence control method that in…

SproutRAG: Attention-Guided Tree Search with Progressive Embeddings for Long-Document RAG

2026-06-16 · Amirhossein Abaskohi, Issam H. Laradji, Peter West, Giuseppe Carenini arxiv

Retrieval-augmented generation (RAG) systems must balance retrieval granularity with contextual coherence, a challenge that existing methods address through LLM-guided chunking, single-level context expansion, or hierarc…