Optimizing Hypergraph-Based RAG: Toward Better Fact Extraction and Chunk Retrieval
Summary
This paper proposes improvements to HyperGraphRAG by using self-consistency prompting for better fact extraction and Personalized PageRank for enhanced chunk retrieval.
View Cached Full Text
Cached at: 07/24/26, 05:03 AM
# Optimizing Hypergraph-Based RAG: Toward Better Fact Extraction and Chunk Retrieval
Source: [https://arxiv.org/html/2607.20506](https://arxiv.org/html/2607.20506)
\\NoAutoSpaceBeforeFDP
Pedro FillastreSebastiao Correia Applied ResearchQlik \{houda\.khrouf, pedro\.fillastre, sebastiao\.correia\}@qlik\.com
###### Abstract
GraphRAG enables deeper reasoning by structuring knowledge as graphs but struggles with n\-ary facts\. HyperGraphRAG uses hypergraphs for richer semantics, improving accuracy, yet relies on error\-prone LLM extraction and inefficient standard chunk retrieval\. We address this by employing self\-consistency prompting to improve the extraction, and Personalized PageRank algorithm over hypergraph to enhance chunk retrieval\.
Keywords:GraphRAG, HyperGraph, n\-ary relations, Personalized PageRank
## 1Introduction
Integrating external knowledge into large language models \(LLMs\) via Retrieval\-Augmented Generation \(RAG\) has established itself as a key strategy for improving factual accuracy and reducing hallucinations\[[12](https://arxiv.org/html/2607.20506#bib.bib16)\]\. Standard RAG systems, based on vector similarity search across text segments \(chunks\), favor shallow semantic similarity at the expense of complex inter\-entity relationships\. While effective for targeted factual queries, they lack the contextual depth required for problems demanding cross\-document understanding\.
Figure 1:Comparison between a binary Knowledge Graph \(KG\) and a Knowledge HyperGraph \(KHG\) for answering a multi\-hop questionTo address these shortcomings, GraphRAG\[[22](https://arxiv.org/html/2607.20506#bib.bib8),[7](https://arxiv.org/html/2607.20506#bib.bib7),[2](https://arxiv.org/html/2607.20506#bib.bib5)\]has emerged as a strategic evolution, structuring data in Knowledge Graphs\. By modeling dependencies between nodes, GraphRAG enables finer\-grained contextual understanding and efficient navigation through relational paths\. This structure facilitates not only multi\-hop reasoning and entity disambiguation, but also the handling of complex global queries \(e\.g\., “What are the main themes?”\) that traditional RAG systems struggle to address\. However, despite their ability to capture binary relations, classical knowledge graphs reach their limits when facing the intrinsic complexity of real\-world data\. Many relations are inherentlynn\-ary, involving multiple entities simultaneously \(for example, a collaboration among three companies or an event linking several actors to a specific location\)\. Decomposing such relations into simple binary edges inevitably leads to a loss of semantic and structural information\. To overcome this loss, approaches\[[14](https://arxiv.org/html/2607.20506#bib.bib1),[21](https://arxiv.org/html/2607.20506#bib.bib9),[6](https://arxiv.org/html/2607.20506#bib.bib3)\]based on knowledge hypergraphs have been proposed\. Unlike binary graphs, hypergraphs use hyperedges to represent facts connecting multiple nodes simultaneously, thus offering superior expressiveness and faithful preservation of data integrity\. As illustrated in Figure[1](https://arxiv.org/html/2607.20506#S1.F1), the relation describing “In 2007, the first commercial flight of the Airbus A380 connected Singapore to Sydney” links four entities\. In a binary graph, this relation is fragmented into independent links, making it impossible to distinguish it from other flights operated by different aircraft \(such as a Boeing 747\) sharing certain attributes \(departure, destination, date\)\.
However, despite their superior expressiveness, hypergraph\-based approaches present two major limitations:
- ∙\\bulletComplexity of hypergraph construction: Although hyperedge\-based representation better preserves factual integrity than binary graphs — which are often sensitive to linguistic complexity \(verb tenses, negations, etc\.\)\[[19](https://arxiv.org/html/2607.20506#bib.bib17)\]— its LLM\-based extraction remains subject to structural instabilities: omitted entities or isolated hyperedges, and deficient coreference resolution hindering data continuity\. These shortcomings fragment the graph topology and limit the model’s ability to navigate across knowledge, directly impacting multi\-hop reasoning\.
- ∙\\bulletUnder\-exploitation of structural connectivity: The retrieval strategy employed in HyperGraphRAG\[[14](https://arxiv.org/html/2607.20506#bib.bib1)\]relies on semantic search combined with local one\-hop neighborhood expansion\. This mechanism under\-exploits the global topology of the hypergraph and suffers from a horizon problem: depending on the semantic scope of the query, it cannot capture structurally connected fragments beyond the immediate neighborhood\. This approach overlooks fragments with significant structural dependencies\. It misses the opportunity to prioritize passages by their degree of connectivity with relevant entities, limiting multi\-hop reasoning\.
To address these limitations, we propose two contributions\. First, an optimized extraction method \(EXT\+\+\) based onself\-consistency prompting, which improves the completeness and connectivity of the hypergraph without additional extraction cost\. Second, a retrieval mechanism based on Personalized PageRank \(PPR\) operating on the hypergraph, inspired by HippoRAG2\[[8](https://arxiv.org/html/2607.20506#bib.bib6)\], which identifies the most relevant chunks through their structural connectivity rather than through simple vector similarity\. The source code and evaluation data are publicly available111[https://github\.com/qlik\-oss/HyperGraphRAG/](https://github.com/qlik-oss/HyperGraphRAG/)to ensure reproducibility\.
## 2Related Work
The RAG architecture is built on a modular pipeline organized around three successive phases: pre\-retrieval, retrieval, and generation\. The initial pre\-retrieval phase defines the representation and structure of source data through text segmentation and granularity selection \(from sentence to document level\), sometimes incorporating Knowledge Graph modeling to optimize semantic context\. Text segmentation is essential to overcome token constraints of language models while improving the precision and efficiency of RAG system\. Initial strategies, such as fixed\-size or recursive chunking, are simple to implement but can compromise semantic coherence\. This renders the system ineffective for answering global questions and exacerbates hallucinations on complex relations\. To address this, contextual chunking\[[1](https://arxiv.org/html/2607.20506#bib.bib2)\]enriches each chunk with a summary of its global context within the document, thereby limiting information loss during indexing and improving the retrieval of relevant chunks\. Other knowledge\-graph\-based approaches transcend chunking limitations by interconnecting entities through semantic relations, shifting from flat textual similarity search to deep structural and relational understanding of data\. At the core of this evolution, Microsoft’s GraphRAG\[[4](https://arxiv.org/html/2607.20506#bib.bib4)\]structures the corpus as a knowledge graph and leverages community detection to produce hierarchical summaries, facilitating the processing of global queries\. Other recent works have sought to improve the expressiveness of knowledge representation and the quality of graph\-based reasoning\. LightRAG\[[7](https://arxiv.org/html/2607.20506#bib.bib7)\]relies on incremental indexing and two\-level retrieval: a fine\-grained search focused on relevant entities and relations, combined with a higher\-level thematic search\. HippoRAG2\[[8](https://arxiv.org/html/2607.20506#bib.bib6)\]proposes an architecture inspired by human associative memory and the hippocampus, using Personalized PageRank to identify relevant chunks by exploiting graph topology\. PathRAG\[[2](https://arxiv.org/html/2607.20506#bib.bib5)\]refines retrieval through reasoning path pruning to select the most informative subgraphs while limiting the introduction of noise into the context provided to the model\.
The evolution of these systems has led to a diversification of graph types for data modeling\. Notable types include: \(i\) the classical knowledge graph \(KG\), which extracts binary relations between entities\[[8](https://arxiv.org/html/2607.20506#bib.bib6),[22](https://arxiv.org/html/2607.20506#bib.bib8)\], sometimes enriched with a taxonomic or ontological layer to improve semantic structuring and disambiguation\[[13](https://arxiv.org/html/2607.20506#bib.bib10)\]; \(ii\) the text graph \(or attributed graph\), where each node corresponds to a text segment with metadata enabling multi\-hop retrieval via neural \(GNN\) or structural mechanisms\[[9](https://arxiv.org/html/2607.20506#bib.bib12),[10](https://arxiv.org/html/2607.20506#bib.bib13)\]; and \(iii\) the bipartite graph \(passage–entity\), which explicitly models co\-occurrences to provide compact indexing for guiding contextual search\[[11](https://arxiv.org/html/2607.20506#bib.bib14)\]\. Since these representations remain limited to binary relations, recent research has turned to hypergraphs for modeling the higher\-order interactions discussed in the introduction\. In this regard, HyperGraphRAG\[[14](https://arxiv.org/html/2607.20506#bib.bib1)\]lays the foundations of this paradigm by leveraging hyperedges to represent complex facts\. This approach surpasses classical graphs through a more faithful capture of entity co\-occurrences, thus offering superior structural expressiveness\. In parallel, Hyper\-RAG\[[6](https://arxiv.org/html/2607.20506#bib.bib3)\]proposes a hybrid architecture\. By jointly extracting binary andNN\-ary relations coupled with vector indexing, it provides the LLM with factual context of unprecedented density during the retrieval and generation phases, drastically reducing the risk of hallucinations\. More recently, PRoH\[[21](https://arxiv.org/html/2607.20506#bib.bib9)\]marks a further step by focusing on adaptive reasoning planning\. The system decomposes queries into a directed acyclic graph \(DAG\) of sub\-questions and iteratively navigates the local neighborhood of the hypergraph\. Although generation quality is notably improved, the impact of this iterative process on system latency remains a blind spot in its evaluation\. These works leave open questions regarding the reliability of large\-scale extraction and the exploitation of the global topology of the hypergraph during retrieval\.
## 3Methodology
The proposed methodology is organized around two complementary axes aimed at improving the reliability of hypergraph construction and optimizing the retrieval of relevant chunks\.
### 3\.1Optimized Extraction \(EXT\+\+EXT^\{\+\+\}\)
LLM\-based knowledge graph extraction is increasingly moving toward the Open Information Extraction \(OpenIE\) paradigm\. Freeing themselves froma prioriontologies, LLMs are leveraged to dynamically discover and extract latent entities and relations directly from document corpora \(bottom\-up discovery\)\. However, since LLM architectures are fundamentally optimized for sequential token generation rather than structured information extraction, this generative nature raises significant challenges\. Beyond semantic proliferation, the extraction process encounters a granularity gap between the fluidity of natural language and the rigidity of the triplet format\. It primarily suffers from structural failures, such as incompleteness when dealing with complex action verbs or graph fragmentation due to imperfect coreference resolution\. To these are added cognitive biases of the model, notably semantic drift: by oversimplifying relations, the system transforms nuances \(uncertainties, hypotheses, temporal aspects\) into established facts\. This inability to model negation or doubt generates factual “noise,” degrading the fidelity of the graph\[[19](https://arxiv.org/html/2607.20506#bib.bib17)\]\. Hypergraph\-based extraction intrinsically mitigates these cognitive failures by preserving the semantic integrity of facts\. However, it remains vulnerable to structural instabilities: omission of entities, production of isolated hyperedges, sometimes devoid of genuine semantic meaning \(e\.g\., residual fragments of the “Who am I?” type\)\.
Although fine\-tuning on graph extraction tasks constitutes a promising avenue\[[19](https://arxiv.org/html/2607.20506#bib.bib17)\], its application remains conditioned on the availability of labeled corpora, which are currently lacking for hypergraphs\. We therefore oriented our approach toward optimization through advanced prompt engineering\. We propose an extension of HyperGraphRAG’s few\-shot extraction\[[14](https://arxiv.org/html/2607.20506#bib.bib1)\]by integrating a self\-consistency mechanism:self\-consistency prompting\. This mechanism is inspired by the Universal Self\-Consistency \(USC\) paradigm\[[3](https://arxiv.org/html/2607.20506#bib.bib18)\], a method that enables LLMs to evaluate and aggregate multiple generation paths to produce a robust consensus without an external evaluator\. This integration offers three fundamental advantages\. First, it reduces hallucinations and semantic drift\[[18](https://arxiv.org/html/2607.20506#bib.bib19)\]: by relying on the convergence of multiple extractions rather than a single greedy decoding, erroneous or speculative relations are statistically filtered\. Second, it mitigates the inherent variance of LLMs and their sensitivity to positional bias in long contexts, a frequent problem leading to the omission of peripheral entities\. Finally, union\-based aggregation across different iterations maximizes the completeness of the hypergraph\.
Concretely, our EXT\+\+method relies on a prompt presented in Appendix[A](https://arxiv.org/html/2607.20506#A1)\. This prompt executes three extraction iterations within a single LLM call for a given chunk, internally merged by union to ensure a denser and more connected final topology\. Beyond this aggregation, EXT\+\+rethinks the instruction structure within the prompt: the model is explicitly constrained to list the concerned entities immediately after the definition of each hyperedge, following their order of appearance in the source text\. Additionally, a coreference resolution instruction is applied during extraction \(e\.g\., substituting a pronoun with the full named entity\)\. This targeted extraction engineering enables \(1\) improved traceability of extracted information, \(2\) prevention of entity omission, \(3\) facilitation of the unambiguous topological association between a hyperedge and its entities, and \(4\) minimization of errors related to pronominal ambiguities\.
### 3\.2Optimized Retrieval via Personalized PageRank \(PPR\) on Hypergraph
In the HyperGraphRAG approach\[[14](https://arxiv.org/html/2607.20506#bib.bib1)\], retrieval relies on semantic search over entities and hyperedges followed by a bidirectional one\-hop topological expansion, supplemented by chunks from a standard vector search\. As discussed in the introduction, this strategy under\-exploits the global graph topology, and dense vector search tends to introduce contextual noise — redundant or structurally disconnected passages from the actual need — which dilutes useful signals and increases the model’s vulnerability to hallucinations\.
To address these limitations, we directly integrate chunks as nodes in the hypergraph, explicitly linking them to the entities and hyperedges derived from them\. On this unified structure, we apply the Personalized PageRank \(PPR\) algorithm, inspired by HippoRAG2\[[8](https://arxiv.org/html/2607.20506#bib.bib6)\], treating entities, hyperedges, and chunks as nodes of a tripartite graph\. The objective is to identify chunks that are both semantically relevant and strongly connected, topologically, to the query content\. PPR acts as a robust filter against false positives from dense search, enabling refinement of the extracted subgraph quality before response generation\.
Figure 2:Retrieval pipeline based on Hypergraphs and Personalized PageRank \(PPR\)As illustrated in Figure[2](https://arxiv.org/html/2607.20506#S3.F2), the optimized retrieval consists of three steps:
Step 1: Vector Search\.The user queryqqis used to perform a vector search over the hyperedge and chunk databases, while entities extracted fromqqare used to query the entity database\. Retrieved nodes are sorted by decreasing similarity, and only the topkkof each type are retained\. However, hyperedges undergo a specific sorting based on a hybrid criterion combining their similarity and their importance weight in the source document, assigned during extraction\.
Step 2: Node Scoring\.Each retrieved element \(entity, hyperedge, chunk\) receives an initial relevance score corresponding to its similarity with the query\. Specific weighting strategies are applied to calibrate these scores\. On the one hand, inspired by the established effectiveness of global importance signals such as IDF \(Inverse Document Frequency\) for information retrieval, a specificity penalty is applied to entities: the score is divided by the degree of connectivity to chunks \(\|Ce\|\|C\_\{e\}\|\) to penalize generic entities:
slocal\(e\)=sim\(e,q\)\|Ce\|s\_\{\\text\{local\}\}\(e\)=\\frac\{\\text\{sim\}\(e,q\)\}\{\|C\_\{e\}\|\}\(1\)
A key mechanism in this step is the relevance propagation \(SpropS\_\{prop\}\) from hyperedges to associated entities\. This enriches the PPR personalization vector with entities that would not have been identified through vector search on entity names alone, broadening the coverage of the query signal within the graph\. The propagated score of an entityeeis computed as the average of the scores of incident hyperedges, weighted by connectivity:
s¯\(e\)=1\|ℋe\|∑h∈ℋesim\(h,q\)\|Ce\|\\bar\{s\}\(e\)=\\frac\{1\}\{\|\\mathcal\{H\}\_\{e\}\|\}\\sum\_\{h\\in\\mathcal\{H\}\_\{e\}\}\\frac\{\\mathrm\{sim\}\(h,q\)\}\{\|C\_\{e\}\|\}\(2\)
Then, a Noisy\-OR aggregation amplifies the score of entities connected to multiple hyperedges while keeping it bounded in\[0,1\]\[0,1\]:
sprop\(e\)=1−\(1−s¯\(e\)\)1\+ln\|ℋe\|s\_\{\\text\{prop\}\}\(e\)=1\-\\left\(1\-\\bar\{s\}\(e\)\\right\)^\{1\+\\ln\|\\mathcal\{H\}\_\{e\}\|\}\(3\)
whereℋe\\mathcal\{H\}\_\{e\}denotes the set of retrieved hyperedges incident toee,sim\(h,q\)\\mathrm\{sim\}\(h,q\)the vector similarity between hyperedgehhand queryqq, and\|Ce\|\|C\_\{e\}\|the number of chunks associated withee\. The intuition behind Noisy\-OR is that each incident hyperedge constitutes an independent observation: the more an entity is linked to relevant hyperedges, the higher its score\. The final score of each entity is then determined by:
s\(e\)=max\(slocal\(e\),sprop\(e\)\)s\(e\)=\\max\\\!\\left\(s\_\{\\text\{local\}\}\(e\),\\;s\_\{\\text\{prop\}\}\(e\)\\right\)\(4\)
On the other hand, the chunk score corresponds to their similarity modulated by a weighting factorwchunkw\_\{chunk\}, balancing their influence relative to conceptual nodes \(entities and hyperedges\) in the PPR algorithm\.
Step 3: Personalized PageRank\.The computed scores are Min\-Max normalized and then assembled into a sparse personalization vector merging the Top\-N entities and hyperedges, along with the weighted similarity scores of chunks\. This vector encodes the query bias over all nodes of the hypergraph\. The PPR algorithm propagates this signal through the structure, redistributing the importance of each node based on its structural proximity to the relevant elements\. Chunk\-type nodes are then extracted and sorted by decreasing PPR score, yielding the Top\-K most relevant passages for generation\.
## 4Experiments
![[Uncaptioned image]](https://arxiv.org/html/2607.20506v1/img/comparison_baselines.png)Table 1:Performance comparison across different domains\. Best scores are in bold and second\-best are underlined for each dataset\.### 4\.1Evaluation Framework
#### Datasets\.
To evaluate the effectiveness of our optimization strategy, we selected three datasets from different benchmarks presenting distinct challenges\. Particular attention was paid to excluding Wikipedia\-based corpora, which are ubiquitous in LLM training data, to prevent memorization bias\.
- ∙\\bulletFiction: Drawn from the UltraDomain benchmark\[[17](https://arxiv.org/html/2607.20506#bib.bib21)\], it evaluates RAG systems on the analysis of long and complex narratives\. Due to the extreme length of documents — reaching up to 560k tokens and requiring a high number of LLM calls per document for hypergraph extraction — we constructed a reduced version by randomly selecting 13 out of 30 documents to control experimentation cost and time\. This subset comprises 84 questions, of which 72 are multi\-hop queries requiring the synthesis of 2 to 10 chunks\. These questions cover five analytical dimensions: thematic content, character development, plot, literary techniques, and meta\-fictional context\.
- ∙\\bulletCS\(Computer Science\): Drawn from the HyperGraphRAG paper\[[14](https://arxiv.org/html/2607.20506#bib.bib1)\]and originally derived from the UltraDomain benchmark\[[17](https://arxiv.org/html/2607.20506#bib.bib21)\], it is based on voluminous university textbooks specialized in computer architecture, mathematical algorithms, and machine learning\. It contains 3 dense technical documents with 398 questions, of which 175 are multi\-hop queries\. These questions are constructed from knowledge fragments located at a distance of 1 to 3 hops, involving fact retrieval and multi\-entity synthesis tasks\.
- ∙\\bulletMAUD\(Merger & Acquisition Understanding Dataset\): Drawn from the LegalBench\-RAG benchmark\[[16](https://arxiv.org/html/2607.20506#bib.bib20)\], it is dedicated to the analysis of complex contractual clauses within merger and acquisition agreements\. Identified as the most demanding component of the benchmark due to its highly specialized legal and financial terminology, it consists of single\-hop factual questions, meaning the answer can be extracted directly from a single passage\. For our work, we constructed a reduced and representative version by randomly selecting 21 out of 150 available documents\. This subset comprises 74 questions and helps control experimentation cost and time\.
#### Baselines\.
To evaluate the performance of our approach, we compared it against several state\-of\-the\-art methods, organized into four distinct categories:
\(i\)Standard RAG: the conventional approach based on chunk segmentation and leveraging dense or hybrid vector similarity search \(combining semantic and lexical search\); \(ii\)RAG with enriched segmentation, exploring advanced chunking strategies\. Although various methods were evaluated on LegalBench\-RAG\[[16](https://arxiv.org/html/2607.20506#bib.bib20)\]\(including semantic chunking, proposition chunking, and summary chunking\), Anthropic’s contextual chunking\[[1](https://arxiv.org/html/2607.20506#bib.bib2)\]proved to be the best\-performing in our preliminary tests and was retained as a baseline; \(iii\)Graph\-based RAG, where two baselines are retained: HippoRAG2\[[8](https://arxiv.org/html/2607.20506#bib.bib6)\], described in Section[2](https://arxiv.org/html/2607.20506#S2), and GraphTransformer\[[15](https://arxiv.org/html/2607.20506#bib.bib22)\], which relies on a binary entity graph representation and benefits from native integration with the LangChain and Neo4j libraries\. During retrieval, this approach identifies query entities and traverses the graph to extract relevant neighborhoods; \(iv\)Hypergraph\-based RAG: To model higher\-order relations, we integrated HyperGraphRAG\[[14](https://arxiv.org/html/2607.20506#bib.bib1)\], which we extend in this work\. Evaluated without our optimization, it serves as a baseline to measure the contribution of our approach\.
#### Metrics\.
Our evaluation relies on three main metrics: Contextual Recall, Correctness, and Completeness\. Contextual Recall, implemented in the RAGAS library\[[5](https://arxiv.org/html/2607.20506#bib.bib23)\], measures the proportion of relevant information extracted from reference documents that is effectively reused in the generated response\. In other words, it evaluates the system’s ability to retrieve and mobilize the necessary context to produce a relevant answer\.
Furthermore, to evaluate correctness and completeness, we adopt an LLM\-as\-a\-judge approach using the GPT\-4\.1\-mini model\. This approach compares the generated response against a reference answer using a prompt inspired by the one defined in\[[14](https://arxiv.org/html/2607.20506#bib.bib1)\]\. Correctness evaluates the extent to which the response is logically and factually aligned with the reference, while completeness evaluates whether it covers all essential aspects\. Both dimensions are scored on a scale of 0 to 10, following well\-defined criteria in the prompt presented in Appendix[A](https://arxiv.org/html/2607.20506#A1)\.
We chose to exclude the F1 score from our evaluation, despite its widespread use in the literature\. This metric relies on lexical similarity between the generated response and the reference, making it particularly sensitive to variations in wording, length, and tokenization\. In the RAG context, where the same question may admit multiple correct answers with different formulations, this dependence on lexical matching can introduce evaluation bias\.
#### Implementation\.
The GPT\-4o\-mini model \(distinct from the model used for evaluation\) is used for hypergraph extraction and response generation, whileNovaSearch/stella\_en\_400M\_v5is used for vector representation\. The top\-k parameter is set to 5 chunks for the CS and MAUD datasets, and to 10 for Fiction where some queries require more than 5 chunks\. For the retrieval phase, we retain the original HyperGraphRAG parameters:kV=60k\_\{V\}=60candidate entities andkH=60k\_\{H\}=60candidate hyperedges are extracted via vector search, then truncated according to a budget of 4,000 tokens each\. For Personalized PageRank \(PPR\), we set its damping factorα=0\.5\\alpha=0\{\.\}5\(value selected by HippoRAG2 following their hyperparameter tuning on a training data subset\), the chunk weighting factorwchunk=0\.5w\_\{\\text\{chunk\}\}=0\{\.\}5\(determined by empirical validation across the 3 datasets by maximizing recall\), and we initialize the personalization vector on the topkent=5k\_\{\\text\{ent\}\}=5entities andkhyp=10k\_\{\\text\{hyp\}\}=10hyperedges\. We use NetworkX for hypergraph management and NanoVectorDB for chunk vector storage and search\. NanoVectorDB is a lightweight vector database designed for in\-memory embedding storage and retrieval\.
### 4\.2Results
#### Comparison with baselines:
Table[1](https://arxiv.org/html/2607.20506#S4.T1)presents the results of our comparative evaluation on the three datasets \(Fiction, CS, MAUD\)\. Our approach \(HyperGraphRAG \+ PPR \+ EXT\+\+\) achieves the best performance or ranks second on nearly all metrics\. It achieves a remarkable gain in contextual recall \(\+51% on Fiction and \+69% on MAUD\), as well as in completeness, with \+11% on both corpora compared to HyperGraphRAG\. These gains illustrate the complementarity of PPR and EXT\+\+: the former improves the selection of relevant passages through probabilistic graph exploration, while the latter strengthens the quality of the underlying graph by reducing isolated and redundant hyperedges\. Compared to Standard RAG, the gaps are even larger: completeness improves by \+59% on Fiction and \+31% on CS, and gains exceed \+150% on MAUD in both correctness and completeness, confirming the inability of vector search alone to handle multi\-hop corpora \(Fiction, CS\), as well as specialized corpora like MAUD, where standardized terminology and the redundancy of contractual language make passage discrimination particularly difficult\.
The results analysis highlights the structural limitations of each baseline that our approach progressively resolves\. Standard RAG, based on simple vector similarity between the query and chunks, has no explicit mechanism for contextual structuring or multi\-hop reasoning\. It fails particularly on MAUD \(contextual recall=10%, answer correctness=3\.38\), where many chunks are semantically very similar to each other, preventing dense search from discriminating the relevant passage among dozens of quasi\-identical formulations, which explains the sharp drop in recall\. Anthropic’s Contextual Chunking partially mitigates this problem by enriching each chunk with a contextual summary of the document to which it belongs\. This contextualization reinforces useful semantic signals and allows the dense search engine to better identify the relevant document\. It proves particularly effective on MAUD, where the chunk context provides strong cues for identifying the correct contract among similarly worded documents — for example, locating the right merger agreement containing the sought covenants\. However, this strategy also introduces a side effect: the systematic addition of context can amplify certain lexical signals that are frequent but not discriminative in the corpus\. When these signals dominate the embeddings, dense search can be diverted toward contextually close but irrelevant passages\. This phenomenon is particularly visible in narrative corpora like Fiction, where contextual enrichment slightly improves retrieval but translates into only a limited gain in correctness \(8\.00\), as contextual cues remain diffuse and difficult to leverage for precisely identifying target information\. LangChain’s Graph Transformer, which extracts a binary knowledge graph and retrieves one\-hop \(*hop\-1*\) neighboring entities, suffers from a dual problem of fragmentation and noise\. On the one hand, the binary graph is often highly fragmented, making context expansion difficult without introducing irrelevant information\. On the other hand, there is an intrinsic trade\-off between retrieval depth and relevance: low depth produces insufficient context, while high depth, without an intelligent pruning strategy, introduces considerable noise that degrades answer quality\. HippoRAG2 partially addresses these limitations by applying Personalized PageRank on a binary graph, offering a more sophisticated probabilistic propagation mechanism than simple*hop\-1*traversal\. This improves certain scores, but completeness remains low because binary triplets do not faithfully capture the n\-ary, temporal, and modal relations frequent in the corpora\.
Our approach resolves these limitations by extending HyperGraphRAG through the combination of three complementary mechanisms\. First, the original hypergraph already offers a semantically richer representation than binary triplets and a naturally less fragmented graph — which explains the performance jump of HyperGraphRAG compared to binary graph baselines\[[14](https://arxiv.org/html/2607.20506#bib.bib1)\]\. However, without a global propagation mechanism, passage selection relies solely on local similarity between the query and graph entities, limiting contextual recall\. The integration of PPR resolves this limitation by enabling probabilistic, weighted relevance propagation throughout the graph, avoiding the introduction of noise through score attenuation with topological distance\. Finally, EXT\+\+intervenes upstream by improving the quality of the hypergraph itself, reducing the fraction of isolated hyperedges and strengthening graph connectivity\. This translates into a slight gain in recall and response completeness\. The synergy between these three components explains the superiority of our approach across all datasets\. However, on MAUD, the contextual recall of our approach remains lower than that of HippoRAG2\. The redundancy of contractual language penalizes hyperedges, which are richer in content than simple triplets: their formulations overlap more, introducing noise into the similarity signal during PPR initialization\. HippoRAG2’s binary triplets, being shorter and more discriminative, offer more precise anchoring in this type of corpus\. Conversely, this richness explains the superiority in completeness \(\+41% gain\): the retrieved entities, hyperedges, and chunks provide the LLM with semantically denser context, enabling more exhaustive responses\.
#### LLM model performance comparison:
Figure[3](https://arxiv.org/html/2607.20506#S4.F3)and Table[2](https://arxiv.org/html/2607.20506#S4.T2)respectively present the quality scores and the average cost per query obtained by four generation models \(Claude Sonnet 4\.5, GPT\-5\.1, Gemini Flash 3, and GPT\-4o mini\) used exclusively at the response generation step within our approach\. Entity and relation extraction remains handled by GPT\-4o mini for all experimental configurations\. This architectural choice is motivated by economic constraints: extracting a hypergraph requires one LLM call per chunk in the corpus, for example over 1,500 calls for the MAUD dataset\. Using an expensive model at this stage would incur prohibitive additional cost — a factor of 25 between GPT\-4o mini and Sonnet 4\.5 — making large\-scale indexing economically unviable\. Comparing models on response generation is important because they differ in their ability to identify and synthesize relevant information from the retrieved context containing noise\.
Figure 3:LLM model performance comparison for response generationTable 2:Average cost per query by model and use caseThe results reveal that*correctness*scores remain high and relatively homogeneous across models \(8\.68 to 9\.96 on a scale of 10\), suggesting that the hypergraph\-based retrieval architecture provides sufficiently relevant context for all evaluated models to produce factually correct responses\. In contrast, the*completeness*metric highlights more pronounced differences: Sonnet 4\.5 achieves scores of 9\.51 on Fiction and 8\.93 on MAUD, while GPT\-4o mini obtains 7\.94 and 5\.80, respectively, representing a degradation between 16% and 35%\. This disparity indicates that more powerful models excel at discriminating relevant passages and exhaustively covering key information, whereas more compact models tend to omit certain elements in specialized domains\.
This cost\-quality trade\-off provides operational flexibility depending on application requirements\. For critical use cases such as legal analysis or due diligence, investing in a high\-capacity reader model is justified, with the additional cost per query remaining moderate \(~$0\.07\)\. For applications tolerating slightly reduced completeness or less demanding narrative domains, GPT\-4o mini constitutes an economically viable alternative while maintaining a satisfactory level of correctness\.
#### Impact of EXT\+\+extraction:
We examine the benefit of optimized EXT\+\+extraction on the structural quality of constructed hypergraphs\. As illustrated in Figure[4](https://arxiv.org/html/2607.20506#S4.F4), EXT\+\+significantly reduces the fraction of isolated hyperedges across all three datasets, lowering the isolation rate from 62% to 20% on Fiction\. Consequently, nearly all extracted facts are anchored to at least one entity, which strengthens the relational signal and ensures much better graph navigability during the search phase\. Meanwhile, the increase in average entity degree reflects a densification of the semantic network; this topology favors multi\-hop reasoning by multiplying information propagation paths\. This optimization also produces longer and more informative hyperedge descriptions \(for example, from 28 to 49 tokens for MAUD, a 72% increase\), thereby enriching the semantic representation\. For MAUD, the average number of entities per connected hyperedge increases from 1\.96 to 2\.41 \(\+23%\), illustrating improved modeling of multi\-entity relations, despite a negligible decrease \(less than 3%\) on the other two datasets\. In summary, EXT\+\+systematically produces more connected, more descriptive, and structurally richer hypergraphs, which directly translates into better coverage and improved response quality during reasoning\.
Figure 4:Hypergraph structure improvement through the EXT\+\+method
#### Extraction cost and latency:
Figure 5:Extraction cost and latency comparison between HyperGraphRAG, EXT\+\+, and HippoRAG2Figure[5](https://arxiv.org/html/2607.20506#S4.F5)compares the cost and total extraction latency between HyperGraphRAG \(with and without EXT\+\+\) and HippoRAG2 on the Fiction and MAUD datasets\. Counter\-intuitively, EXT\+\+— which asks the model to perform three internal extraction passes before emitting the deduplicated union — turns out to be faster and less expensive than simple extraction\. This result is explained by two factors: \(i\) the longer EXT\+\+prompt \(~600 additional tokens\) benefits more from prefix caching \(\+20 to \+24% of cached tokens\), reducing completion cost; \(ii\) the internal aggregation merges redundant extractions before generating output, reducing the number of completion tokens \(\-20% on Fiction, \-14% on MAUD\)\. Since LLM latency is dominated by autoregressive decoding, this reduction directly translates into shorter extraction time\.
In contrast, HippoRAG2 exhibits significantly superior performance in terms of cost and latency, with a factor of approximately 5×\\timesto 7×\\timesdepending on the metric\. However, this efficiency stems directly from the nature of its representation: HippoRAG2 extracts a binary knowledge graph that is inherently less verbose than a hypergraph\. This conciseness comes at a qualitative cost: binary graphs are known for their difficulty in faithfully representing temporal relations, epistemic modalities, and n\-ary relations frequent in complex domains\. The hypergraph, while more costly to construct, preserves the semantic richness of the source text and offers better robustness against these limitations\.
#### Personalized PageRank latency:
We evaluate the computational cost introduced by the Personalized PageRank \(PPR\) algorithm by comparing per\-query retrieval latency with and without this optimization\. The results in Figure[6](https://arxiv.org/html/2607.20506#S4.F6)show remarkably low latency in both configurations\. Without PPR, the average time per query ranges between 0\.135s and 0\.146s depending on the dataset\. Enabling PPR incurs an overhead of less than 0\.2 seconds per query across all tested corpora\. This uniform behavior is explained by the fact that PPR operates on a local subgraph centered on the query\-relevant entities, rather than on the entire knowledge hypergraph\. This overhead remains negligible in a graph\-augmented retrieval scenario, given the improvement in context quality provided to the model\.
Figure 6:Average per\-query retrieval latency with and without PPR
## 5Conclusion and Future Work
This work extended the HyperGraphRAG approach through the integration of Personalized PageRank \(PPR\) and self\-consistency extraction \(EXT\+\+\)\. PPR enables probabilistic relevance propagation through the hypergraph, significantly improving contextual recall and response completeness\. EXT\+\+improves the graph’s reliability upstream by reducing isolated hyperedges, with no additional latency or extraction cost\. Evaluation on three corpora of distinct natures — narrative, scientific, and legal — confirms the superiority of our approach, with particularly marked gains in response correctness and completeness\.
Several future directions are envisioned\. First, diffusion methods natively designed for hypergraphs — such as random walks on hypergraphs\[[20](https://arxiv.org/html/2607.20506#bib.bib24)\]— could better exploit the n\-ary structure of hyperedges than standard PPR diffusion\. Second, reconceiving each hyperedge as a condensed summary of atomic fragments rather than verbatim sentences would reduce the volume of produced tokens, thereby decreasing extraction cost and latency\. Additionally, evaluating our approach on vector databases leveraging advanced search algorithms would enable measuring the impact on specialized single\-hop benchmarks with redundant vocabulary, such as MAUD\. Finally, a contextpruningmechanism would optimize token usage and reduce contextual noise before generation, paving the way for evaluation on other benchmarks requiring deeper reasoning or complex synthesis\.
## References
- \[1\]Anthropic\(2024\)Introducing contextual retrieval\.Note:[https://www\.anthropic\.com/engineering/contextual\-retrieval](https://www.anthropic.com/engineering/contextual-retrieval)External Links:[Link](https://www.anthropic.com/engineering/contextual-retrieval)Cited by:[§2](https://arxiv.org/html/2607.20506#S2.p1.1),[§4\.1](https://arxiv.org/html/2607.20506#S4.SS1.SSS0.Px2.p2.1)\.
- \[2\]B\. Chen, Z\. Guo, Z\. Yang, Y\. Chen, J\. Chen, Z\. Liu, C\. Shi, and C\. Yang\(2025\)PathRAG: pruning graph\-based retrieval augmented generation with relational paths\.External Links:2502\.14902v2,[Link](https://arxiv.org/abs/2502.14902v2)Cited by:[§1](https://arxiv.org/html/2607.20506#S1.p2.1),[§2](https://arxiv.org/html/2607.20506#S2.p1.1)\.
- \[3\]X\. Chen, R\. Aksitov, U\. Alon, J\. Ren, K\. Xiao, P\. Yin, S\. Prakash, C\. Sutton, X\. Wang, and D\. Zhou\(2024\)Universal self\-consistency for large language models\.InICML 2024 Workshop on In\-Context Learning,External Links:[Link](https://openreview.net/forum?id=LjsjHF7nAN)Cited by:[§3\.1](https://arxiv.org/html/2607.20506#S3.SS1.p2.1)\.
- \[4\]D\. Edge, H\. Trinh, Y\. Cheng, J\. Bradley, A\. Chao, A\. Mody, S\. Truitt, and G\. Bansal\(2024\)From local to global: a graph rag approach to query\-focused summarization\.arXiv preprint arXiv:2404\.16130\.Cited by:[§2](https://arxiv.org/html/2607.20506#S2.p1.1)\.
- \[5\]S\. Es, J\. James, L\. Espinosa Anke, and S\. Schockaert\(2024\)RAGAs: automated evaluation of retrieval augmented generation\.InProceedings of the 18th Conference of the European Chapter of the Association for Computational Linguistics: System Demonstrations,N\. Aletras and O\. De Clercq \(Eds\.\),External Links:[Link](https://aclanthology.org/2024.eacl-demo.16/)Cited by:[§4\.1](https://arxiv.org/html/2607.20506#S4.SS1.SSS0.Px3.p1.1)\.
- \[6\]Y\. Feng, H\. Hu, X\. Hou, S\. Liu, S\. Ying, S\. Du, H\. Hu, and Y\. Gao\(2025\)Hyper\-rag: combating llm hallucinations using hypergraph\-driven retrieval\-augmented generation\.External Links:2504\.08758,[Link](https://arxiv.org/abs/2504.08758)Cited by:[§1](https://arxiv.org/html/2607.20506#S1.p2.1),[§2](https://arxiv.org/html/2607.20506#S2.p2.1)\.
- \[7\]Z\. Guo, Z\. Fan, Z\. Lu, J\. Xu, and J\. Wen\(2024\)LightRAG: constructing and utilizing light\-weight knowledge graph for retrieval\-augmented generation\.arXiv preprint arXiv:2410\.05779\.Cited by:[§1](https://arxiv.org/html/2607.20506#S1.p2.1),[§2](https://arxiv.org/html/2607.20506#S2.p1.1)\.
- \[8\]B\. J\. Gutiérrez, Y\. Shu, W\. Qi, S\. Zhou, and Y\. Su\(2025\)From RAG to memory: non\-parametric continual learning for large language models\.InForty\-second International Conference on Machine Learning,External Links:[Link](https://openreview.net/forum?id=LWH8yn4HS2)Cited by:[§1](https://arxiv.org/html/2607.20506#S1.p5.1),[§2](https://arxiv.org/html/2607.20506#S2.p1.1),[§2](https://arxiv.org/html/2607.20506#S2.p2.1),[§3\.2](https://arxiv.org/html/2607.20506#S3.SS2.p2.1),[§4\.1](https://arxiv.org/html/2607.20506#S4.SS1.SSS0.Px2.p2.1)\.
- \[9\]X\. He, Y\. Tian, Y\. Sun, N\. V\. Chawla, T\. Laurent, Y\. LeCun, X\. Bresson, and B\. Hooi\(2024\)G\-retriever: retrieval\-augmented generation for textual graph understanding and question answering\.InThe Thirty\-eighth Annual Conference on Neural Information Processing Systems,External Links:[Link](https://openreview.net/forum?id=MPJ3oXtTZl)Cited by:[§2](https://arxiv.org/html/2607.20506#S2.p2.1)\.
- \[10\]Y\. Hu, Z\. Lei, Z\. Zhang, B\. Pan, C\. Ling, and L\. Zhao\(2025\)GRAG: graph retrieval\-augmented generation\.InFindings of the Association for Computational Linguistics: NAACL,External Links:[Link](https://aclanthology.org/2025.findings-naacl.232/),[Document](https://dx.doi.org/10.18653/v1/2025.findings-naacl.232)Cited by:[§2](https://arxiv.org/html/2607.20506#S2.p2.1)\.
- \[11\]Y\. Huang, S\. Zhang, and X\. Xiao\(2025\)KET\-rag: a cost\-efficient multi\-granular indexing framework for graph\-rag\.InProceedings of the 31st ACM SIGKDD Conference on Knowledge Discovery and Data Mining V\.2,KDD ’25\.External Links:[Link](https://doi.org/10.1145/3711896.3737012),[Document](https://dx.doi.org/10.1145/3711896.3737012)Cited by:[§2](https://arxiv.org/html/2607.20506#S2.p2.1)\.
- \[12\]P\. Lewis, E\. Perez, A\. Piktus, F\. Petroni, V\. Karpukhin, N\. Goyal, H\. Küttler, M\. Lewis, W\. Yih, T\. Rocktäschel, S\. Riedel, and D\. Kiela\(2020\)Retrieval\-augmented generation for knowledge\-intensive nlp tasks\.InProceedings of the 34th International Conference on Neural Information Processing Systems,Cited by:[§1](https://arxiv.org/html/2607.20506#S1.p1.1)\.
- \[13\]L\. Liang, Z\. Bo, Z\. Gui, Z\. Zhu, L\. Zhong, P\. Zhao, M\. Sun, Z\. Zhang, J\. Zhou, W\. Chen, W\. Zhang, and H\. Chen\(2025\)KAG: boosting llms in professional domains via knowledge augmented generation\.InCompanion Proceedings of the ACM on Web Conference 2025,WWW ’25,pp\. 334–343\.External Links:ISBN 9798400713316,[Document](https://dx.doi.org/10.1145/3701716.3715240)Cited by:[§2](https://arxiv.org/html/2607.20506#S2.p2.1)\.
- \[14\]H\. Luo, H\. E, G\. Chen, Y\. Zheng, X\. Wu, Y\. Guo, Q\. Lin, Y\. Feng, Z\. Kuang, M\. Song, Y\. Zhu, and L\. A\. Tuan\(2025\)HyperGraphRAG: retrieval\-augmented generation via hypergraph\-structured knowledge representation\.Note:NeurIPS 2025 posterExternal Links:2503\.21322,[Link](https://arxiv.org/abs/2503.21322)Cited by:[2nd item](https://arxiv.org/html/2607.20506#S1.I1.i2.p1.1),[§1](https://arxiv.org/html/2607.20506#S1.p2.1),[§2](https://arxiv.org/html/2607.20506#S2.p2.1),[§3\.1](https://arxiv.org/html/2607.20506#S3.SS1.p2.1),[§3\.2](https://arxiv.org/html/2607.20506#S3.SS2.p1.1),[2nd item](https://arxiv.org/html/2607.20506#S4.I1.i2.p1.1),[§4\.1](https://arxiv.org/html/2607.20506#S4.SS1.SSS0.Px2.p2.1),[§4\.1](https://arxiv.org/html/2607.20506#S4.SS1.SSS0.Px3.p2.1),[§4\.2](https://arxiv.org/html/2607.20506#S4.SS2.SSS0.Px1.p3.1)\.
- \[15\]Neo4jCreating knowledge graphs from unstructured data\.Note:[https://neo4j\.com/developer/genai\-ecosystem/importing\-graph\-from\-unstructured\-data/](https://neo4j.com/developer/genai-ecosystem/importing-graph-from-unstructured-data/)Cited by:[§4\.1](https://arxiv.org/html/2607.20506#S4.SS1.SSS0.Px2.p2.1)\.
- \[16\]N\. Pipitone and G\. Houir Alami\(2024\)LegalBench\-rag: a benchmark for retrieval\-augmented generation in the legal domain\.arXiv preprint arXiv:2408\.10343\.External Links:[Link](https://arxiv.org/abs/2408.10343)Cited by:[3rd item](https://arxiv.org/html/2607.20506#S4.I1.i3.p1.1),[§4\.1](https://arxiv.org/html/2607.20506#S4.SS1.SSS0.Px2.p2.1)\.
- \[17\]H\. Qian, Z\. Liu, P\. Zhang, K\. Mao, D\. Lian, Z\. Dou, and T\. Huang\(2025\)MemoRAG: boosting long context processing with global memory\-enhanced retrieval augmentation\.InProceedings of the ACM Web Conference\),External Links:[Link](https://arxiv.org/abs/2409.05591)Cited by:[1st item](https://arxiv.org/html/2607.20506#S4.I1.i1.p1.1),[2nd item](https://arxiv.org/html/2607.20506#S4.I1.i2.p1.1)\.
- \[18\]X\. Wang, J\. Wei, D\. Schuurmans, Q\. V\. Le, E\. H\. Chi, S\. Narang, A\. Chowdhery, and D\. Zhou\(2023\)Self\-consistency improves chain of thought reasoning in language models\.InThe Eleventh International Conference on Learning Representations, ICLR 2023, Kigali, Rwanda,Cited by:[§3\.1](https://arxiv.org/html/2607.20506#S3.SS1.p2.1)\.
- \[19\]D\. Xu, W\. Chen, W\. Peng, C\. Zhang, T\. Xu, X\. Zhao, X\. Wu, Y\. Zheng, and E\. Chen\(2024\)Large language models for generative information extraction: a survey\.Frontiers of Computer Science18\.External Links:[Link](https://doi.org/10.1007/s11704-024-40555-y),[Document](https://dx.doi.org/10.1007/s11704-024-40555-y)Cited by:[1st item](https://arxiv.org/html/2607.20506#S1.I1.i1.p1.1),[§3\.1](https://arxiv.org/html/2607.20506#S3.SS1.p1.1),[§3\.1](https://arxiv.org/html/2607.20506#S3.SS1.p2.1)\.
- \[20\]M\. Yang and X\. Xu\(2025\)Recent advances in hypergraph neural networks\.Journal of the Operations Research Society of China\.External Links:[Document](https://dx.doi.org/10.1007/s40305-025-00630-y),[Link](https://doi.org/10.1007/s40305-025-00630-y),ISSN 2194\-6698Cited by:[§5](https://arxiv.org/html/2607.20506#S5.p2.1)\.
- \[21\]X\. Zai, X\. Tan, X\. Wang, Q\. Liu, X\. Xu, and W\. Zhang\(2026\)PRoH: dynamic planning and reasoning over knowledge hypergraphs for retrieval\-augmented generation\.External Links:2510\.12434,[Link](https://arxiv.org/abs/2510.12434)Cited by:[§1](https://arxiv.org/html/2607.20506#S1.p2.1),[§2](https://arxiv.org/html/2607.20506#S2.p2.1)\.
- \[22\]Z\. Zhu, T\. Huang, K\. Wang, J\. Ye, X\. Chen, and S\. Luo\(2026\)Graph\-based approaches and functionalities in retrieval\-augmented generation: a comprehensive survey\.ACM Comput\. Surv\.\.External Links:ISSN 0360\-0300,[Link](https://doi.org/10.1145/3795880),[Document](https://dx.doi.org/10.1145/3795880)Cited by:[§1](https://arxiv.org/html/2607.20506#S1.p2.1),[§2](https://arxiv.org/html/2607.20506#S2.p2.1)\.
## Appendix APrompts
## Appendix BUse Case
Table[3](https://arxiv.org/html/2607.20506#A2.T3)presents a qualitative comparison on a multi\-hop fiction query “How does Vadassy’s plan to trap the spy ultimately fail?” requiring the synthesis of three narrative passages\. The golden answer identifies three key facts: Vadassy is*locked in the writing\-room*, the spy*retrieves the camera without being identified*, and Vadassy is left*without evidence*\.
Table 3:Qualitative comparison of generated answers for a multi\-hop fiction query\.Boldtext highlights key facts; correctness and completeness are scored from 0 to 10\.HippoRAG2 produces a vague and generic response, mentioning only “the spy’s escape” without recovering any of the specific mechanisms described in the reference\. This illustrates the inability of binary graph retrieval to gather the dispersed narrative fragments needed for multi\-hop reasoning\. HyperGraphRAG captures the broader narrative arc — Vadassy being caught in his own trap — but omits the precise mechanism \(the writing\-room locking and camera theft\)\. Adding PPR enriches the retrieved context: the answer now mentions the camera inquiries and Vadassy’s self\-entrapment, yet still lacks the specific writing\-room detail\. Our full approach, HyperGraphRAG \+ EXT\+\+\+ PPR, recovers*all*key facts demonstrating how the combination of a structurally richer hypergraph and global PPR propagation enables exhaustive multi\-hop retrieval\.
Notably, correctness scores are identical \(10/10\) for the three hypergraph\-based approaches\. This is because the correctness metric evaluates whether the generated answer contains factual errors relative to the reference; since these three responses do not introduce false statements, they all receive the maximum score\. Correctness is thus insensitive to*missing*information — an answer can be perfectly correct yet incomplete\. The completeness metric, by contrast, specifically penalizes omissions, making it the decisive discriminator for multi\-hop queries where coverage of all relevant narrative elements is critical\.Similar Articles
ContextRAG: Extraction-Free Hierarchical Graph Construction for Retrieval-Augmented Generation
ContextRAG introduces an extraction-free method for constructing hierarchical graph indices for retrieval-augmented generation, using Residual-Quantization K-Means and Formal Concept Analysis to reduce LLM calls and tokens by orders of magnitude while maintaining competitive F1 scores on multi-hop questions.
A Unified Framework for Context-Aware and Relation-Aware Graph Retrieval-Augmented Generation
This paper proposes HyGRAG, a hierarchical graph RAG framework that integrates contextual and relational information for multi-hop reasoning, achieving a 9.7% average accuracy improvement over existing methods.
Adaptive Chunking: Optimizing Chunking-Method Selection for RAG
Introduces Adaptive Chunking, a framework using five intrinsic document metrics to select optimal chunking strategies for RAG, improving answer correctness from 62-64% to 72% and question resolution rate by over 30%.
ScalableRAG: High-Quality RAG at Zero Ingestion Cost
This paper introduces ScalableRAG, a retrieval-augmented generation method that achieves high accuracy without any ingestion costs (no vector database or knowledge graph) by using regex-based set creation and aggregative reasoning. It outperforms baselines on multiple datasets and also presents a limited-ingestion variant for further accuracy improvements.
HyCE-RAG: Hypergraph Chain-of-Evidence Retrieval-Augmented Generation for Explainable Multi-hop Question Answering
HyCE-RAG is a novel hypergraph-based retrieval-augmented generation framework for multi-hop question answering that constructs explicit evidence chains via confidence-aware heuristic search, outperforming standard RAG and graph-based RAG methods in accuracy, relevance, and faithfulness.