Research
EvoGraph-R1: Self-Evolving Multimodal Knowledge Hypergraphs for Agentic Retrieval
Overview Research area: Multimodal retrieval-augmented generation (RAG), GraphRAG, knowledge hypergraphs, and reinforcement-learning-based agentic retrieval for Multimodal Large Language Models (MLLMs
- arXiv
- 2607.12764
- Published
- 2026-07-14
- Authors
- Jiashi Lin, Changhong Jiang, Xiangru Lin, Ruifei Zhang, Xinyi Zhu, Jiyao Liu, Cheng Tang, Ye Du, Shujian Gao, Junzhi Ning, Lihao Liu, Ziyan Huang, Tianbin Li, Jin Ye, Junjun He
AI summary
Overview
Research area: Multimodal retrieval-augmented generation (RAG), GraphRAG, knowledge hypergraphs, and reinforcement-learning-based agentic retrieval for Multimodal Large Language Models (MLLMs).
Technical level: Advanced. The paper combines hypergraph construction, a Markov Decision Process (MDP) formulation, and Group Relative Policy Optimization (GRPO) training, and assumes familiarity with RAG pipelines, LLM-based knowledge extraction, and RL fine-tuning.
One-sentence scope: The paper proposes EvoGraph-R1, a framework that treats a multimodal knowledge hypergraph as a dynamic environment an agent can retrieve from, expand via web search, and edit during inference, and reports state-of-the-art accuracy on multimodal VQA and text QA benchmarks.
What This Paper Is About
Existing GraphRAG systems build an entity-relation graph offline in a single pass and then query it once, so the graph cannot absorb new evidence, fix its own errors, or let retrieval adapt when the first attempt fails. EvoGraph-R1 reframes the knowledge graph as a live environment: an agent observes the current hypergraph state, chooses among retrieving from it, searching the web, editing it, or answering, and the hypergraph co-evolves with the reasoning process. The goal is more accurate, better-covered, and more traceable answers for knowledge-intensive questions that span images and text.
Key Contributions
- Self-evolving retrieval paradigm. The paper introduces what it describes as the first framework that models multimodal knowledge graphs as MDP environments, unifying retrieval, reasoning, and knowledge evolution through agent-environment interaction. It identifies three bottlenecks in static GraphRAG: text-centric fragmentation, frozen structures, and rigid single-pass retrieval.
- The EvoGraph-R1 framework. An autonomous agent operates over multimodal knowledge hypergraphs through four action types — GraphRetrieve, WebSearch, GraphEdit, and Answer — implementing a closed loop in which graph structure and reasoning co-evolve. GraphEdit itself comprises Insert, Update, and Delete sub-operations.
- Modality-general design. Removing the visual components while retaining the agent-driven evolution mechanism adapts the framework to text-only settings, so the paradigm is claimed to generalize beyond multimodal inputs.
- State-of-the-art empirical results. Experiments on knowledge-intensive multimodal VQA and text QA benchmarks report improvements over existing RAG, GraphRAG, and search-augmented baselines in accuracy, efficiency, and evidential traceability.
Main Findings
- Text-only QA gains. EvoGraph-R1-7B reaches 68.5% F1 on 2WikiMultiHopQA, 65.4% on HotpotQA, and 56.8% on Natural Questions (NQ), an average of 63.57%. This beats the strongest baseline, Graph-R1-7B (65.0%, 62.7%, 49.9%, average 59.20%), by +3.5% on 2WikiMultiHopQA, +2.7% on HotpotQA, and +6.9% on NQ.
- Multimodal gains. On E-VQA the model achieves 43.6% accuracy, outperforming MMSearch-R1 by +6.7% and MMKB-RAG by +7.7%. On OK-VQA it reaches 68.6%, surpassing GPT-4o-mini by +2.7%. InfoSeek accuracy is 42.3%, and the multimodal average is 51.50% versus 46.03% for MMSearch-R1-7B and 45.90% for MMKB-RAG.
- Advantage over web-search-equipped methods. Compared with methods that discard retrieved content after each step, EvoGraph-R1 exceeds MMSearch-R1 by +21.8% and Search-R1 by +17.5% on text-only benchmarks, and exceeds MMSearch-R1 by +6.7% on E-VQA and +8.7% on OK-VQA.
- Ablation: WebSearch matters most. Removing WebSearch causes drops of 9.6% on 2Wiki and 11.2% on E-VQA, which the authors attribute to the limits of static corpora for open-domain and long-tail knowledge. This is the largest single-component drop in the ablation table.
- Ablation: Insert is the most critical edit. Removing Insert causes an 8.4% drop on 2Wiki (to 60.1 F1) and a 6.8% drop on E-VQA (to 36.8), with 0.8 additional retrieval rounds. Removing Update causes drops of 5.5% and 3.9%; removing Delete causes smaller but consistent drops of 2.4% and 1.5%.
- Ablation: the hypergraph environment itself. Removing the multimodal hypergraph costs 5.4% on 2Wiki F1 (63.1) and 4.8% on E-VQA accuracy (38.8), with retrieval rounds increasing.
- Retrieval efficiency. The full model completes queries in 2.57 rounds on 2Wiki and 1.65 rounds on E-VQA. The −Insert variant needs 3.48 rounds (+35.4% increase) and the −WebSearch variant needs 3.17 rounds (+23.3% increase). Figure 3 reports EvoGraph-R1 converging to approximately 2.4 retrieval turns and around 1,300 tokens, versus roughly 3.1 turns and 2,850 tokens for variants without graph editing, and roughly 3.5 turns and 2,200 tokens for MMSearch-R1.
- Generation quality. Under the HelloBench protocol with GPT-4o-mini as LLM-as-Judge across seven dimensions, EvoGraph-R1 is reported to surpass all baselines, with notably higher relevance and correctness than MMSearch-R1 and Graph-R1, and the highest diversity score.
- Low-resource robustness. Restricting Wikipedia to 1%, 5%, and 10% of full size on E-VQA, EvoGraph-R1 achieves 37.2% accuracy at 1% corpus while baselines range from 13.2% to 18.9%. Against MMKB-RAG the gap grows from +7.7 points at full corpus to +13.2 points at 1%, +13.8 at 5%, and +12.9 at 10%.
- Graph refinement is measurable. After refinement, nodes increase from 120,499 to 123,631 (+2.60%), hyperedges from 177,408 to 181,418 (+2.26%), graph density from 0.781 to 0.842 (+7.81%), the Watts–Strogatz clustering coefficient from 0.024 to 0.028 (+16.67%), and edge semantic similarity from 0.664 to 0.685 (+3.16%).
Methodology in Plain English
The pipeline has three parts.
Building the initial hypergraph. A multimodal corpus of text and images is turned into a unified cross-modal hypergraph. Text is segmented into knowledge fragments, each stored as a hyperedge carrying a natural-language description, an entity set, a relation type, and a confidence score between 0 and 10, using an n-ary relation extraction prompt with an MLLM-based extractor. Images get an anchor node representing the image itself, plus a scene description and detected object names from which visual hyperedges are extracted, so no visual fact floats without a source. An entity-resolution function using string similarity and embedding proximity merges matching textual and visual mentions into canonical nodes, and all hyperedges reconnect to those merged nodes. Everything — entities, visual entities, hyperedges — is embedded into a shared space with a multimodal encoder (GME) for fast retrieval.
Evolving the graph at inference time. Retrieval is cast as a discrete-time MDP. The state is the current hypergraph, the action history, and the query. The agent picks one of four actions: GraphRetrieve looks up entities or hyperedges in the current graph; WebSearch queries an external search engine when in-graph evidence is insufficient; GraphEdit modifies the graph through Insert (add verified new entities or hyperedges), Update (revise hyperedges to fix errors or conflicts), or Delete (soft-remove low-quality elements by lowering their confidence scores); and Answer terminates the episode and produces the final response from the evolved graph. GraphRetrieve and WebSearch gather information without changing structure; only GraphEdit changes the graph state, and every transition is appended to the action history.
Training the agent. The policy is optimized with Group Relative Policy Optimization (GRPO) using a trajectory-level reward with three parts: a structural reward for well-formed reasoning steps with a step-wise scaling factor of 0.5 and a cap of 1.0; an answer reward computed as token-level F1 between the predicted answer and the ground-truth label; and an efficiency penalty that subtracts a normalized action cost weighted by a coefficient. The answer reward is only applied when the structural reward reaches 1.0, so correctness counts only for coherent trajectories.
Experimental setup. Knowledge construction uses GPT-4o-mini for both EvoGraph-R1 and the GraphRAG baselines; retrieval uses GME; the base model is Qwen2.5-VL-7B for multimodal tasks and Qwen2.5-7B-Instruct for text-only tasks. Datasets are E-VQA, InfoSeek, and OK-VQA (with Wikipedia filtered via EchoSight as the knowledge source) for multimodal, and 2WikiMultiHopQA, HotpotQA, and Natural Questions (with official Wikipedia dumps) for text. Metrics are LLM-as-Judge for multimodal accuracy, F1 for text-only, and G-E for answer quality. Experiments use three random seeds on four 80GB NVIDIA A100 GPUs.
Why This Matters
Impact on research. The paper challenges the assumption that a knowledge graph is something you build once and then query. By showing that graph edits and web search can be learned as actions inside a reinforcement-learning loop, it connects GraphRAG to the agent-environment paradigm and suggests that retrieval quality can be improved by changing the knowledge state rather than only improving the retriever. The framework is also demonstrated in both text-only and multimodal configurations, which supports the claim that the mechanism is not modality-specific.
Real-world applications implied by the framework's design:
- Knowledge-intensive visual question answering over image-text corpora such as Wikipedia-sourced material, where answers require aligning scenes with textual facts.
- Multi-hop question answering over large document collections, where the first retrieval is often insufficient and follow-up search plus evidence consolidation is needed.
- Open-domain assistants that must combine an internal knowledge base with live web search while keeping retrieved evidence traceable.
- Settings with incomplete or restricted corpora, where the paper's low-resource results (still 37.2% accuracy at 1% of the Wikipedia corpus) indicate graceful degradation.
Industry relevance. The efficiency numbers matter for deployment: fewer retrieval rounds (2.57 on 2Wiki, 1.65 on E-VQA) and shorter responses (around 1,300 tokens versus roughly 2,850 for a no-graph-editing variant) translate directly into lower inference cost. The use of 7B-scale base models (Qwen2.5-VL-7B, Qwen2.5-7B-Instruct) rather than only frontier models suggests the approach is feasible at moderate serving budgets.
Future Directions
- Scaling and cost of hypergraph construction. The paper poses the cost of building the unified heterogeneous hypergraph as an explicit research question (RQ3) but reports only retrieval rounds and response length as efficiency indicators; full construction cost accounting remains open.
- When not to trust web evidence. WebSearch is the single most influential component in the ablation, yet the paper does not report how conflicting or unreliable web content is adjudicated beyond the Update and Delete edit operations and confidence-score adjustments.
- Extending beyond VQA and text QA. The paper validates on three multimodal and three text benchmarks; whether the MDP formulation transfers to other modalities or task structures is not reported.
- Optimizing the graph itself as an objective. Refinement improves density (+7.81%), clustering (+16.67%), and edge semantic similarity (+3.16%), which raises the question of whether graph-structural quality could be trained against directly rather than only through answer-level rewards.
Target Audience
Researchers and engineers working on retrieval-augmented generation, GraphRAG, multimodal question answering, and reinforcement learning for LLM agents. It is most useful to readers already comfortable with RAG pipelines, knowledge-graph construction, and policy-gradient methods such as GRPO, and to practitioners evaluating whether an agentic, editable knowledge graph is worth the added complexity over static retrieval.
Authors’ abstract
Retrieval-augmented generation (RAG) has emerged as a critical paradigm for grounding Multimodal Large Language Models (MLLMs) in external knowledge. Recent GraphRAG methods introduce structured entity-relation graphs to improve retrieval and reasoning. However, they remain limited by treating knowledge graphs as static data structures built offline and queried in a single pass. This static paradigm misaligns with the interactive, iterative nature of knowledge-intensive reasoning, creating three bottlenecks: (i) text-centric fragmentation that impedes cross-modal reasoning, (ii) frozen structures unable to incorporate new evidence or correct errors, and (iii) rigid single-pass retrieval without adaptive refinement. To overcome these limitations, we introduce EvoGraph-R1, a self-evolving GraphRAG framework that reconceptualizes knowledge graphs as dynamic environments shaped through agent interactions. We formulate retrieval as a Markov Decision Process (MDP) where the agent observes the graph state and executes actions to query (GraphRetrieve), expand (WebSearch), refine (GraphEdit), or terminate (Answer) the reasoning. These actions reshape the hypergraph structure and generate feedback signals that guide subsequent evolution. Through this closed loop, the hypergraph evolves by integrating new evidence, correcting errors, and refining structure to support multi-hop reasoning. Experiments on multimodal VQA and text QA benchmarks demonstrate substantial improvements over existing RAG baselines in accuracy, coverage, and traceability, establishing self-evolving knowledge graphs as a fundamental paradigm across modalities.