AgentKGV: Agentic LLM-RAG Framework with Two-Stage Training for the Fact Verification of Knowledge Graphs
Summary
Proposes AgentKGV, an agentic LLM-RAG framework with two-stage training (distillation SFT and trajectory-level GRPO) for verifying facts in knowledge graphs, achieving significant improvements on the T-REx benchmark while reducing retrieval calls.
View Cached Full Text
Cached at: 07/13/26, 07:57 AM
# AgentKGV: Agentic LLM-RAG Framework with Two-Stage Training for the Fact Verification of Knowledge Graphs
Source: [https://arxiv.org/html/2607.09092](https://arxiv.org/html/2607.09092)
Yumin Heo1,Hyeon\-gu Lee2,Sumin Seo2,Youngjoong Ko1 1SungKyunKwan University,2NAVER, ymheo1123@gmail\.com, yjko@skku\.edu \{hyeongu\.lee, sumin\.seo\}@navercorp\.com
###### Abstract
Knowledge graphs \(KGs\) are often automatically constructed from large\-scale corpora, but they inevitably contain factual errors due to noisy sources and extraction failures, and verifying them reliably at industrial scale remains a critical challenge\. To address this, we propose AgentKGV, the Agentic LLM\-RAG framework for KG fact Verification, that integrates dynamic routing and iterative query rewriting, which handles surface\-form mismatch in document\-level retrieval\. To make this framework more accurate and cost\-efficient for industrial deployment, we further introduce a two\-stage training strategy: turn\-level distillation\-based SFT that transfers reasoning ability from a large teacher model into a small model for stable query rewriting and reasoning, and trajectory\-level GRPO that optimizes the search policy to reduce unnecessary retrieval at scale\. On the long\-tail\-predicate split of the open\-domain T\-REx benchmark, our framework improves macro\-F1 over single\-turn RAG by 5\.5 %p, and two\-stage training does it further by 9\.4 %p\. GRPO also cuts the average number of search calls from 3\.24 to 1\.63 without lowering accuracy\.
AgentKGV: Agentic LLM\-RAG Framework with Two\-Stage Training for the Fact Verification of Knowledge Graphs
## 1Introduction
Knowledge graphs encode entities and their relationships as triples in the form \(subject,predicate,object\), and they serve as core components across a wide range of knowledge\-intensive applications such as search engines, recommendation systems, question answering, and decision support\. In industrial settings, the demand for automatic construction of KGs from large volumes of documents has considerably grown\. However, automatically constructed KGs inevitably contain incorrect information due to ambiguous sentence structures, low\-reliability sources, and errors in NLP models\. Therefore, the factual validity of extracted triples has become a critical bottleneck for the downstream reliability of industrial KGs\.
Researchers have traditionally relied on isolated methodologies to evaluate the validity of automatically constructed triples\. Graph\-based methodsBordeset al\.\([2013](https://arxiv.org/html/2607.09092#bib.bib1)\)assess validity through structural consistency, but they often fail to detect real\-world factual errors because they rely solely on internal graph topology\. LLM\-based methodsPanet al\.\([2024](https://arxiv.org/html/2607.09092#bib.bib2)\)offer broader semantic reasoning, but they remain vulnerable to domain\-specific hallucinations\. RAG\-based methodsLewiset al\.\([2020](https://arxiv.org/html/2607.09092#bib.bib4)\); Trivediet al\.\([2023](https://arxiv.org/html/2607.09092#bib.bib5)\)utilize external document retrieval, but they fail when the system cannot retrieve the relevant information\. A further difficulty is the structural modality gap between compressed triples and natural language documents, because factual information in documents rarely appears in the same standardized form as KG triples and this makes single\-round retrieval unreliable\.
To overcome these limitations, recent research has adopted Agentic LLM frameworksYaoet al\.\([2023](https://arxiv.org/html/2607.09092#bib.bib6)\); Schicket al\.\([2023](https://arxiv.org/html/2607.09092#bib.bib7)\), in which autonomous agents dynamically orchestrate reasoning and retrieval\. On this paradigm, we propose AgentKGV in which the agent first decides whether it verifies a triple through internal parametric knowledge or through external retrieval through dynamic routing\. When external retrieval is necessary, the agent then iteratively rewrites an input triple into natural language queries that are compatible with document\-level retrieval\. Because this iterative rewriting transforms the compressed triple into diverse natural language expressions, it grounds the verification in retrieved evidence\.
However, deploying this framework reliably and efficiently in industrial KGs requires addressing two practical challenges\. First, query rewriting can become unstable because the model may lack a stable semantic anchor for domain\-specific predicates, and industrial KGs contain a large proportion of long\-tail predicates that are rarely observed in general pretraining corpora\. Second, the iterative search policy can become inefficient because the model may not know when to stop searching, and this inefficiency is especially costly at industrial scale where even a small increase in search iterations per triple leads to substantial computational overhead\.
To make the framework more accurate and cost\-efficient for industrial deployment, we introduce a two\-stage training strategy\. The first stage applies distillation\-based SFT, in which a large teacher model generates complete verification trajectories\. From each successful trajectory, we take the final judgment together with the query that immediately precedes it, and we train the small model on these\. The query\-rewriting part teaches the model how the teacher rewrites a triple into an effective query, and the judgment part teaches the model how the teacher reasons over the retrieved evidence to reach a conclusion\. Through this distillation, the small model learns the query rewriting and reasoning ability of the teacher, and it acquires a stable semantic foundation for triple\-grounded query rewriting and routing, even on domain\-specific predicates\. The second stage applies trajectory\-level GRPO, in which the model is trained through full rollouts with trajectory\-level rewards\. We additionally impose a per\-turn search penalty, so that the model is discouraged from issuing unnecessary search calls\. Through this design, the model learns when to stop searching and how to draw a conclusion under insufficient evidence\. The contributions of this work are summarized as follows:
- •We proposeAgentKGV, the Agentic LLM\-RAG framework for KG fact verification that integrates dynamic routing and iterative query rewriting to verify triples against document\-level evidence through multi\-turn retrieval\.
- •We introduce atwo\-stage training strategythat combines turn\-level distillation\-based SFT and trajectory\-level GRPO, and this makes the framework more accurate and cost\-efficient for industrial deployment\.
- •We validate AgentKGV on an open\-domain English benchmark, confirming its effectiveness onlong\-tail predicatesrarely seen during training, and we further verify its applicability on areal\-world Korean enterprise KG\.
Figure 1:Overview of the proposed Agentic LLM\-RAG framework\. The agent dynamically routes between internal verification and external retrieval, and iteratively rewrites the triple into retrieval\-compatible queries until it produces a final judgment\.
## 2Related Work
### 2\.1KG Fact Verification
Approaches to verifying KG triple validity fall into three groups\.Graph\-based methodsassess validity from internal graph structure, either by scoring triples with learned embeddingsBordeset al\.\([2013](https://arxiv.org/html/2607.09092#bib.bib1)\); Yanget al\.\([2015](https://arxiv.org/html/2607.09092#bib.bib8)\)or by path\- and reasoning\-based inference over the graphLaoet al\.\([2011](https://arxiv.org/html/2607.09092#bib.bib9)\); Daset al\.\([2018](https://arxiv.org/html/2607.09092#bib.bib3)\)\. They capture structural regularities but rely solely on graph topology, and thus cannot detect construction\-time factual errors that have no support within the graph\.LLM\-based methodsPanet al\.\([2024](https://arxiv.org/html/2607.09092#bib.bib2)\)instead exploit the parametric knowledge of large language models, and they offer broader semantic coverage but remain vulnerable to hallucination on domain\-specific predicates that are rarely seen during pretraining\.RAG\-based methodsground the judgment in retrieved documentsLewiset al\.\([2020](https://arxiv.org/html/2607.09092#bib.bib4)\); Popatet al\.\([2018](https://arxiv.org/html/2607.09092#bib.bib10)\); Chenet al\.\([2022](https://arxiv.org/html/2607.09092#bib.bib11)\); Panet al\.\([2023](https://arxiv.org/html/2607.09092#bib.bib12)\), and recent work extends them with iterativeTrivediet al\.\([2023](https://arxiv.org/html/2607.09092#bib.bib5)\); Asaiet al\.\([2024](https://arxiv.org/html/2607.09092#bib.bib13)\)and adaptiveMallenet al\.\([2023](https://arxiv.org/html/2607.09092#bib.bib14)\); Shiet al\.\([2024](https://arxiv.org/html/2607.09092#bib.bib15)\)retrieval\. These reduce hallucination but are designed for natural\-language question answering, and they overlook a challenge specific to KG verification: the target is a compressed\(s,p,o\)\(s,p,o\)triple rather than a question, and a single retrieval over it is often unreliable because documents express the same fact with different wording\.
Agentic LLM frameworksgo one step further\. The model acts as an autonomous agent that interleaves reasoning with tool or retrieval callsYaoet al\.\([2023](https://arxiv.org/html/2607.09092#bib.bib6)\); Schicket al\.\([2023](https://arxiv.org/html/2607.09092#bib.bib7)\), and recent work trains the agent with reinforcement learning so that it learns when and how to searchJinet al\.\([2025](https://arxiv.org/html/2607.09092#bib.bib16)\); Songet al\.\([2025](https://arxiv.org/html/2607.09092#bib.bib17)\)\. These frameworks are effective on multi\-hop question answering, but they are not designed for KG triple verification, and they do not address the\(s,p,o\)\(s,p,o\)\-to\-document modality gap\. Our framework adopts the agentic paradigm for KG fact verification, and it addresses this gap through dynamic routing and\(s,p,o\)\(s,p,o\)\-grounded iterative query rewriting\.
## 3Methodology
### 3\.1Problem Formulation
We formulate KG fact verification as a binary classification task\. Given a tripleτ=\(s,p,o\)\\tau=\(s,p,o\), the goal is to assign a labely∈\{true,false\}y\\in\\\{\\text\{true\},\\text\{false\}\\\}, which indicates whether the triple is factually correct, to the triple\. The verification is performed over a document corpus𝒟=\{d1,d2,…,dN\}\\mathcal\{D\}=\\\{d\_\{1\},d\_\{2\},\\ldots,d\_\{N\}\\\}, where each document may contain evidences relevant to the triple\.
### 3\.2Agentic LLM\-RAG Framework
#### 3\.2\.1Overall Architecture
The proposed framework operates as a multi\-turn agent that interacts with a retrieval system\. Figure[1](https://arxiv.org/html/2607.09092#S1.F1)shows the overview of the framework\. Given a tripleτ\\tau, the agent first performs dynamic routing and decides whether to verify the triple directly through its internal knowledge or to initiate iterative retrieval\. When retrieval is initiated, the agent selects one of several component combinations as a guide and writes an initial query, and then it enters a multi\-turn loop\.
At each turntt, the agent observes a contextctc\_\{t\}that consists of the triple, a running summary of previous turns, the most recent query, and its retrieval result:
ct=\[τ,𝒮<t,qt−1,ℛt−1\]c\_\{t\}=\\big\[\\tau,\\ \\mathcal\{S\}\_\{<t\},\\ q\_\{t\-1\},\\ \\mathcal\{R\}\_\{t\-1\}\\big\]\(1\)where𝒮<t\\mathcal\{S\}\_\{<t\}is the running summary of earlier turns, andqt−1q\_\{t\-1\}andℛt−1\\mathcal\{R\}\_\{t\-1\}are the most recent query and its retrieved documents\. Based on this context, the agent decides whether the accumulated evidence is sufficient to produce a final judgment or whether it should rewrite the query and continue searching\. The loop continues until the agent produces a final judgment, or until it reaches the maximum number of turnsTT\. Across these turns, a separate summarization module compresses the retrieval history so that the context remains compact\.
#### 3\.2\.2Dynamic Routing
The routing decision is made through explicit chain\-of\-thought reasoning over a triple\. When the triple can be confidently verified through internal parametric knowledge, the agent produces a judgment without retrieval\. Otherwise, the agent initiates iterative retrieval instead\. This adaptive routing avoids unnecessary retrieval and reduces cost\.
#### 3\.2\.3\(s,p,o\)\(s,p,o\)\-grounded Initial Query Writing
When retrieval is necessary, the agent transforms the compressed triple into a natural language query that is compatible with document\-level retrieval\. Unlike general query rewriting that operates on a natural language query, the agent can leverage the explicit\(s,p,o\)\(s,p,o\)structure of the triple\. Actually, document\-level retrieval using only a single fixed query can be unreliable; an overly broad query returns documents that mention the entity but do not include the fact, while an overly specific query may match no document when the corpus expresses the same fact with different wording\. In our method, a set of component combinations \(Table[3](https://arxiv.org/html/2607.09092#A1.T3)in Appendix[A](https://arxiv.org/html/2607.09092#A1)\) is presented to the agent as selectable options in the prompt, and one combination is chosen per each turn to set the specificity and surface form of its query\. This enable the agent to adjust retrieval granularity and cover lexical variation of the predicate\.
#### 3\.2\.4Iterative Query Rewriting
The agent refines the query multiple times until evidence is found\. Starting from the second turn, the agent no longer writes each query independently\. Instead, this system refines subsequent queries based on previous queries and their results to enable it to find relevant evidence more accurately\. When the previous result is only partially relevant, the agent reformulates the query toward a more suitable component combination or surface form\. On the other hand, when the previous query retrieves no useful documents, the agent changes the formulation rather than repeats the same search\. This feedback between retrieval results and subsequent queries enables the agent to more effectively search for evidences that support or refute the triple\. The iteration continues until the agent retrieves sufficient evidences for a final judgment, or until it reaches the maximum number of turns\.
#### 3\.2\.5Retrieval Summarization Module
The retrieval summarization module maintains the running summary𝒮<t\\mathcal\{S\}\_\{<t\}across turns\. At each turn, it combines the previous summary with the most recent query and retrieval result:
𝒮<t\+1=Summarizer\(𝒮<t,qt,ℛt\)\\mathcal\{S\}\_\{<t\+1\}=\\text\{Summarizer\}\\big\(\\mathcal\{S\}\_\{<t\},\\ q\_\{t\},\\ \\mathcal\{R\}\_\{t\}\\big\)\(2\)In this way, the full result of the current turn is compressed into the summary at the next turn, so that the agent always sees the compressed history of earlier turns together with the full result of only the current turn\. This design provides two benefits\. First, it bounds the context length, because all but the most recent turn are stored in compressed form rather than as full documents\. Second, the summary makes the search history explicit, so the agent can avoid redundant queries and instead target the evidence that is still missing\. Therefore, the module maintains the context compact while it supports more effective query rewriting across turns\.
Figure 2:Overview of the two\-stage training strategy\.Stage 1 \(Distillation\-based SFT\)distills the last turn of correct teacher trajectories into two state–action pairs that supervise query rewriting and evidence\-grounded reasoning\.Stage 2 \(GRPO\)optimizes the search policy with a trajectory\-level reward combining final correctness and a per\-turn search penalty, reducing redundant retrieval while preserving accuracy\.
### 3\.3Two\-Stage Training Strategy
To deploy the framework reliably and efficiently in industrial KGs, a two\-stage sequential strategy is presented for the two practical challenges in Section[1](https://arxiv.org/html/2607.09092#S1): unstable query rewriting on domain\-specific predicates and an inefficient search policy\.
#### 3\.3\.1Stage 1: Distillation\-based SFT
The first stage stabilizes query rewriting and routing through supervised fine\-tuning\. Because a small target model has limited reasoning capacity, we use a large teacher model to generate complete verification trajectories\. To bridge the knowledge gap between the two models, we configure the teacher model to invoke the retrieval function whenever the triple is uncertain, and to provide direct answers only for triples that can be clearly verified using general knowledge\. This prevents the target model from relying too heavily on its limited parametric knowledge\.
We retain only the trajectories whose final judgment matches the gold label, and then we take the last turn of these trajectories\. This turn decomposes into two parts: query rewriting and final judgment\. The query\-rewriting part retrieves the document using the rewritten query; we treat it as a successful rewritten query, since no further search follows\. The judgment part produces the correct label, which serves as supervision for reasoning over the retrieved evidence\. From these, we form two state–action pairs,\(st−1,at−1\)\(s\_\{t\-1\},a\_\{t\-1\}\)and\(st−2,at−2\)\(s\_\{t\-2\},a\_\{t\-2\}\), wherest−1s\_\{t\-1\}andst−2s\_\{t\-2\}follows the inference\-time context format of the query rewriting part and the final judgement part, respectively; the first pair supervises query rewriting and the second one does answer generation\. The training objective is the standard SFT loss:
ℒSFT=−𝔼\(st,at\)∼𝒟train\[logPθ\(at∣st\)\]\\mathcal\{L\}\_\{\\text\{SFT\}\}=\-\\mathbb\{E\}\_\{\(s\_\{t\},a\_\{t\}\)\\sim\\mathcal\{D\}\_\{\\text\{train\}\}\}\\big\[\\log P\_\{\\theta\}\(a\_\{t\}\\mid s\_\{t\}\)\\big\]\(3\)The retrieved documents and summaries appear only insts\_\{t\}and are excluded from the loss, because the retrieval and summarization modules are not trained in our model\.
#### 3\.3\.2Stage 2: GRPO for Trajectory\-level Search Policy Optimization
The second stage optimizes the iterative search policy through trajectory\-level reinforcement learning\. Turn\-level SFT stabilizes individual decisions but cannot capture the global trade\-off between search depth and verification accuracy; continuing to search is always locally reasonable when evidence is insufficient, but excessive iterations can harm both efficiency and accuracy\. Therefore, we apply Group Relative Policy Optimization \(GRPO\)Shaoet al\.\([2024](https://arxiv.org/html/2607.09092#bib.bib18)\); DeepSeek\-AI \([2025](https://arxiv.org/html/2607.09092#bib.bib19)\)with trajectory\-level rewards\.
For each triple, the model generates a group of full trajectories that follow the same context structure as inference\. The trajectory\-level reward combines final correctness and search cost terms:
R=Rcorrect\+RsearchR=R\_\{\\text\{correct\}\}\+R\_\{\\text\{search\}\}\(4\)The correctness term assigns\+1\.0\+1\.0when the final judgment matches the gold label,0when it does not, and−0\.5\-0\.5when the output cannot be parsed into a valid label\.
The search cost term penalizes unnecessary retrieval\. The first search incurs no penalty, because at least one retrieval is generally required to ground the verification, and each subsequent search incurs a fixed penalty:
Rsearch=−α⋅max\(0,Nsearch−1\)R\_\{\\text\{search\}\}=\-\\alpha\\cdot\\max\(0,\\ N\_\{\\text\{search\}\}\-1\)\(5\)whereα\\alphais the small positive number, andNsearchN\_\{\\text\{search\}\}is the total number of retrieval calls in the trajectory\.
Within each group, the advantage of theii\-th trajectoryAiA\_\{i\}is computed by standardizingRiR\_\{i\}against the group’s mean and standard deviationShaoet al\.\([2024](https://arxiv.org/html/2607.09092#bib.bib18)\)\. This trajectory\-level advantage is broadcasted to every model\-generated token, and the policy is updated by maximizing the standard clipped GRPO objective with a KL penalty against the reference model\. Tokens produced by the retrieval environment \(i\.e\., the returned documents\) are excluded from the gradient, so the policy gradient is computed only over the model’s own reasoning and action tokens\. The full objective is given in Appendix[B](https://arxiv.org/html/2607.09092#A2)\.
Through this trajectory\-level optimization, the model learns when to continue searching and when to stop, and it learns to reach a definitive conclusion even under insufficient evidence\. The search cost term further discourages redundant retrieval, which reduces the average number of search calls per triple and lowers inference cost at industrial scale\.
## 4Experiments
Table 1:Main results on the two T\-REx splits \(long\-tail→\\rightarrowunseen\)\.P\-F1/N\-F1are per\-class F1,Macrois their macro\-average, andCallsis the average search calls per triple\.### 4\.1Experimental Settings
##### English Open KG
Our main benchmark is built from T\-RExElsaharet al\.\([2018](https://arxiv.org/html/2607.09092#bib.bib20)\)\. The source set contains 50K triples over 376 predicates and we define two disjoint predicate regimes\.Plong\-tailP\_\{\\text\{long\-tail\}\}appears in training but each predicate is capped at 10 triples andPunseenP\_\{\\text\{unseen\}\}is held out from training\.
##### Hard negatives\.
We build*hard*negatives rather than random ones\. For each positive\(s,p,o\)\(s,p,o\), we replaceoowith the same\-predicate objecto′o^\{\\prime\}that is most similar tooounderBAAI/bge\-base\-en\-v1\.5embeddingsXiaoet al\.\([2024](https://arxiv.org/html/2607.09092#bib.bib21)\), and we exclude any\(s,p,o′\)\(s,p,o^\{\\prime\}\)that already exists as a positive\. A per\-split similarity threshold balances the positive and negative counts, and all negatives pass validation without collisions against known positives \(Table[4](https://arxiv.org/html/2607.09092#A3.T4)\)\.
##### Korean Enterprise KG \(industrial application\)\.
To test real\-world transfer, we evaluate on an automatically constructed Korean enterprise KG, where the negatives are genuine real\-world errors arising from extraction failures and noise in the source documents\. Human annotators labeled each triple, and the final set contains 337 positive and 114 negative triples\. Although small in scale, every triple is human\-verified, making it a high\-quality testbed\. This benchmark differs from T\-REx in language, domain, and retriever\.
##### Setup\.
The English benchmark uses a BGE dense retrieverXiaoet al\.\([2024](https://arxiv.org/html/2607.09092#bib.bib21)\), while the enterprise benchmark uses an in\-house lexical retriever\. We retrieve the top\-5 documents per query, cap the number of turns at 8, and summarize with Qwen\-2\.5\-7B\-InstructTeam \([2024](https://arxiv.org/html/2607.09092#bib.bib22)\)\. The search penalty coefficientα\\alphais set to 0\.05 on T\-REx and 0\.12 on the Korean enterprise KG\. The teacher is gpt\-oss\-120b, and the backbone is Qwen\-2\.5\-7B\-Instruct, shared across all LLM baselines\.
##### Baselines / Metrics\.
We compare against Direct LLM, Single\-turn RAG, IRCoTTrivediet al\.\([2023](https://arxiv.org/html/2607.09092#bib.bib5)\)\. We report per\-class F1 \(Pos\-F1, Neg\-F1\), their macro\-average \(Macro\) and the average search calls per triple\. For retrieval\-based models, if a valid label is not produced before generation terminates, the prediction is scored as negative\.
### 4\.2Main Results
Table[1](https://arxiv.org/html/2607.09092#S4.T1)shows that our framework outperforms all baselines\. Two\-stage training achieves the best per\-class F1, and it improves over Single\-turn RAG by a clear margin on both splits\. The gap to IRCoT is also consistent across both splits, even though IRCoT issues substantially more search calls per triple\. This pattern indicates that Stage 1 gives a stable query\-rewriting foundation that transfers to predicates with limited or no training exposure, rather than to in\-distribution relations only\.
Two\-stage training also cuts retrieval cost\. GRPO reduces the average number of search calls consistently across both T\-REx splits, while F1 is improved\. The reduction is most valuable on the unseen split, where a search agent risks a blow\-up on relations it has never encountered, yet our model keeps its search calls controlled\.
### 4\.3Industrial Applicability
On the Korean enterprise KG \(Table[2](https://arxiv.org/html/2607.09092#S4.T2)\), the framework substantially outperforms the baselines, and two\-stage training achieves the best Pos\-F1 and Macro\-F1\. This result holds even though the benchmark differs in language, domain, and retriever, and its negatives are real extraction errors\. Notably, the untrained framework \(AgentKGV\) leads on P\-F1 and Macro\-F1, but its N\-F1 still trails IRCoT\. Architecture alone does not resolve this noisy negative class\. SFT closes this gap and achieves the best N\-F1\. GRPO then raises P\-F1 further, at a small cost to N\-F1, and this yields the best overall Macro\-F1\.
Table 2:Results on the Korean enterprise KG \(industrial application\)\.
### 4\.4Ablation Study
##### Effect of each training stage\.
Table[1](https://arxiv.org/html/2607.09092#S4.T1)disentangles the contribution of each stage\. Stage 1 \(SFT\) consistently improves Macro\-F1 over the untrained framework on both splits, confirming that turn\-level distillation stabilizes query rewriting and reasoning\. However, it does so at the cost of more retrieval: the average search calls rise on every split, because the distilled policy leans on the teacher’s retrieve\-when\-uncertain behavior and searches more aggressively\. Stage 2 \(GRPO\) resolves this trade\-off\. It cuts the search calls back to near the untrained level while*further*improving Macro\-F1, which shows that many of the extra searches induced by Stage 1 were redundant rather than informative\.
## 5Conclusion
We presented an Agentic LLM\-RAG framework for KG fact verification, together with a two\-stage training strategy that stabilizes query rewriting, optimizes the iterative search policy\. Experiments demonstrate that our framework outperforms representative baselines, and the ablation study confirms the complementary contribution of each training stage\. We believe this framework offers a practical foundation for reliable fact verification in industrial KGs\.
## 6Limitations
##### Scale of the industrial benchmark\.
Our industrial evaluation relies on a human\-annotated Korean enterprise KG\. Because every triple is labeled and verified by human annotators, the annotation cost is high, and the resulting benchmark is necessarily small\. We therefore treat it as a high\-precision sanity check rather than a large\-scale evaluation, and the reported industrial numbers should be interpreted with this limited sample size in mind\. Scaling the evaluation to larger industrial KGs without prohibitive annotation cost—for example, through semi\-automatic labeling or human\-in\-the\-loop verification—is an important direction for future work\.
## References
- A\. Asai, Z\. Wu, Y\. Wang, A\. Sil, and H\. Hajishirzi \(2024\)Self\-rag: learning to retrieve, generate, and critique through self\-reflection\.InInternational Conference on Learning Representations,External Links:[Link](https://openreview.net/forum?id=hSyW5go0v8)Cited by:[§2\.1](https://arxiv.org/html/2607.09092#S2.SS1.p1.1)\.
- A\. Bordes, N\. Usunier, A\. Garcia\-Duran, J\. Weston, and O\. Yakhnenko \(2013\)Translating embeddings for modeling multi\-relational data\.InAdvances in Neural Information Processing Systems,C\.J\. Burges, L\. Bottou, M\. Welling, Z\. Ghahramani, and K\. Weinberger \(Eds\.\),Vol\.26,pp\.\.External Links:[Link](https://proceedings.neurips.cc/paper_files/paper/2013/file/1cecc7a77928ca8133fa24680a88d2f9-Paper.pdf)Cited by:[§1](https://arxiv.org/html/2607.09092#S1.p2.1),[§2\.1](https://arxiv.org/html/2607.09092#S2.SS1.p1.1)\.
- J\. Chen, A\. Sriram, E\. Choi, and G\. Durrett \(2022\)Generating literal and implied subquestions to fact\-check complex claims\.InProceedings of the 2022 Conference on Empirical Methods in Natural Language Processing,Y\. Goldberg, Z\. Kozareva, and Y\. Zhang \(Eds\.\),Abu Dhabi, United Arab Emirates,pp\. 3495–3516\.External Links:[Link](https://aclanthology.org/2022.emnlp-main.229/),[Document](https://dx.doi.org/10.18653/v1/2022.emnlp-main.229)Cited by:[§2\.1](https://arxiv.org/html/2607.09092#S2.SS1.p1.1)\.
- R\. Das, S\. Dhuliawala, M\. Zaheer, L\. Vilnis, I\. Durugkar, A\. Krishnamurthy, A\. Smola, and A\. McCallum \(2018\)Go for a walk and arrive at the answer: reasoning over paths in knowledge bases using reinforcement learning\.InInternational Conference on Learning Representations,External Links:[Link](https://openreview.net/forum?id=Syg-YfWCW)Cited by:[§2\.1](https://arxiv.org/html/2607.09092#S2.SS1.p1.1)\.
- DeepSeek\-AI \(2025\)DeepSeek\-r1: incentivizing reasoning capability in llms via reinforcement learning\.arXiv preprint arXiv:2501\.12948\.External Links:[Link](https://arxiv.org/abs/2501.12948)Cited by:[§3\.3\.2](https://arxiv.org/html/2607.09092#S3.SS3.SSS2.p1.1)\.
- H\. Elsahar, P\. Vougiouklis, A\. Remaci, C\. Gravier, J\. Hare, F\. Laforest, and E\. Simperl \(2018\)T\-REx: a large scale alignment of natural language with knowledge base triples\.InProceedings of the Eleventh International Conference on Language Resources and Evaluation \(LREC 2018\),N\. Calzolari, K\. Choukri, C\. Cieri, T\. Declerck, S\. Goggi, K\. Hasida, H\. Isahara, B\. Maegaard, J\. Mariani, H\. Mazo, A\. Moreno, J\. Odijk, S\. Piperidis, and T\. Tokunaga \(Eds\.\),Miyazaki, Japan\.External Links:[Link](https://aclanthology.org/L18-1544/)Cited by:[§4\.1](https://arxiv.org/html/2607.09092#S4.SS1.SSS0.Px1.p1.2)\.
- B\. Jin, H\. Zeng, Z\. Yue, D\. Wang, H\. Zamani, and J\. Han \(2025\)Search\-r1: training llms to reason and leverage search engines with reinforcement learning\.arXiv preprint arXiv:2503\.09516\.External Links:[Link](https://arxiv.org/abs/2503.09516)Cited by:[§2\.1](https://arxiv.org/html/2607.09092#S2.SS1.p2.2)\.
- N\. Lao, T\. Mitchell, and W\. W\. Cohen \(2011\)Random walk inference and learning in a large scale knowledge base\.InProceedings of the 2011 Conference on Empirical Methods in Natural Language Processing,R\. Barzilay and M\. Johnson \(Eds\.\),Edinburgh, Scotland, UK\.,pp\. 529–539\.External Links:[Link](https://aclanthology.org/D11-1049/)Cited by:[§2\.1](https://arxiv.org/html/2607.09092#S2.SS1.p1.1)\.
- 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\.InAdvances in Neural Information Processing Systems,Vol\.33,pp\. 9459–9474\.External Links:[Link](https://proceedings.neurips.cc/paper/2020/hash/6b493230205f780e1bc26945df7481e5-Abstract.html)Cited by:[§1](https://arxiv.org/html/2607.09092#S1.p2.1),[§2\.1](https://arxiv.org/html/2607.09092#S2.SS1.p1.1)\.
- A\. Mallen, A\. Asai, V\. Zhong, R\. Das, D\. Khashabi, and H\. Hajishirzi \(2023\)When not to trust language models: investigating effectiveness of parametric and non\-parametric memories\.InProceedings of the 61st Annual Meeting of the Association for Computational Linguistics \(Volume 1: Long Papers\),A\. Rogers, J\. Boyd\-Graber, and N\. Okazaki \(Eds\.\),Toronto, Canada,pp\. 9802–9822\.External Links:[Link](https://aclanthology.org/2023.acl-long.546/),[Document](https://dx.doi.org/10.18653/v1/2023.acl-long.546)Cited by:[§2\.1](https://arxiv.org/html/2607.09092#S2.SS1.p1.1)\.
- L\. Pan, X\. Wu, X\. Lu, A\. T\. Luu, W\. Y\. Wang, M\. Kan, and P\. Nakov \(2023\)Fact\-checking complex claims with program\-guided reasoning\.InProceedings of the 61st Annual Meeting of the Association for Computational Linguistics \(Volume 1: Long Papers\),A\. Rogers, J\. Boyd\-Graber, and N\. Okazaki \(Eds\.\),Toronto, Canada,pp\. 6981–7004\.External Links:[Link](https://aclanthology.org/2023.acl-long.386/),[Document](https://dx.doi.org/10.18653/v1/2023.acl-long.386)Cited by:[§2\.1](https://arxiv.org/html/2607.09092#S2.SS1.p1.1)\.
- S\. Pan, L\. Luo, Y\. Wang, C\. Chen, J\. Wang, and X\. Wu \(2024\)Unifying large language models and knowledge graphs: a roadmap\.IEEE Transactions on Knowledge and Data Engineering36\(7\),pp\. 3580–3599\.External Links:[Document](https://dx.doi.org/10.1109/TKDE.2024.3352100)Cited by:[§1](https://arxiv.org/html/2607.09092#S1.p2.1),[§2\.1](https://arxiv.org/html/2607.09092#S2.SS1.p1.1)\.
- K\. Popat, S\. Mukherjee, A\. Yates, and G\. Weikum \(2018\)DeClarE: debunking fake news and false claims using evidence\-aware deep learning\.InProceedings of the 2018 Conference on Empirical Methods in Natural Language Processing,E\. Riloff, D\. Chiang, J\. Hockenmaier, and J\. Tsujii \(Eds\.\),Brussels, Belgium,pp\. 22–32\.External Links:[Link](https://aclanthology.org/D18-1003/),[Document](https://dx.doi.org/10.18653/v1/D18-1003)Cited by:[§2\.1](https://arxiv.org/html/2607.09092#S2.SS1.p1.1)\.
- T\. Schick, J\. Dwivedi\-Yu, R\. Dessì, R\. Raileanu, M\. Lomeli, L\. Zettlemoyer, N\. Cancedda, and T\. Scialom \(2023\)Toolformer: language models can teach themselves to use tools\.InAdvances in Neural Information Processing Systems,Vol\.36\.External Links:[Link](https://openreview.net/forum?id=Yacmpz84TH)Cited by:[§1](https://arxiv.org/html/2607.09092#S1.p3.1),[§2\.1](https://arxiv.org/html/2607.09092#S2.SS1.p2.2)\.
- Z\. Shao, P\. Wang, Q\. Zhu, R\. Xu, J\. Song, X\. Bi, H\. Zhang, M\. Zhang, Y\. Li, Y\. Wu, and D\. Guo \(2024\)DeepSeekMath: pushing the limits of mathematical reasoning in open language models\.arXiv preprint arXiv:2402\.03300\.External Links:[Link](https://arxiv.org/abs/2402.03300)Cited by:[Appendix B](https://arxiv.org/html/2607.09092#A2.p1.2),[§3\.3\.2](https://arxiv.org/html/2607.09092#S3.SS3.SSS2.p1.1),[§3\.3\.2](https://arxiv.org/html/2607.09092#S3.SS3.SSS2.p4.3)\.
- Z\. Shi, S\. Zhang, W\. Sun, S\. Gao, P\. Ren, Z\. Chen, and Z\. Ren \(2024\)Generate\-then\-ground in retrieval\-augmented generation for multi\-hop question answering\.InProceedings of the 62nd Annual Meeting of the Association for Computational Linguistics \(Volume 1: Long Papers\),L\. Ku, A\. Martins, and V\. Srikumar \(Eds\.\),Bangkok, Thailand,pp\. 7339–7353\.External Links:[Link](https://aclanthology.org/2024.acl-long.397/),[Document](https://dx.doi.org/10.18653/v1/2024.acl-long.397)Cited by:[§2\.1](https://arxiv.org/html/2607.09092#S2.SS1.p1.1)\.
- H\. Song, J\. Jiang, Y\. Min, J\. Chen, Z\. Chen, W\. X\. Zhao, L\. Fang, and J\. Wen \(2025\)R1\-searcher: incentivizing the search capability in llms via reinforcement learning\.arXiv preprint arXiv:2503\.05592\.External Links:[Link](https://arxiv.org/abs/2503.05592)Cited by:[§2\.1](https://arxiv.org/html/2607.09092#S2.SS1.p2.2)\.
- Q\. Team \(2024\)Qwen2\.5 technical report\.arXiv preprint arXiv:2412\.15115\.External Links:[Link](https://arxiv.org/abs/2412.15115)Cited by:[§4\.1](https://arxiv.org/html/2607.09092#S4.SS1.SSS0.Px4.p1.1)\.
- H\. Trivedi, N\. Balasubramanian, T\. Khot, and A\. Sabharwal \(2023\)Interleaving retrieval with chain\-of\-thought reasoning for knowledge\-intensive multi\-step questions\.InProceedings of the 61st Annual Meeting of the Association for Computational Linguistics \(Volume 1: Long Papers\),A\. Rogers, J\. Boyd\-Graber, and N\. Okazaki \(Eds\.\),Toronto, Canada,pp\. 10014–10037\.External Links:[Link](https://aclanthology.org/2023.acl-long.557/),[Document](https://dx.doi.org/10.18653/v1/2023.acl-long.557)Cited by:[§1](https://arxiv.org/html/2607.09092#S1.p2.1),[§2\.1](https://arxiv.org/html/2607.09092#S2.SS1.p1.1),[§4\.1](https://arxiv.org/html/2607.09092#S4.SS1.SSS0.Px5.p1.1)\.
- S\. Xiao, Z\. Liu, P\. Zhang, N\. Muennighoff, D\. Lian, and J\. Nie \(2024\)C\-pack: packed resources for general chinese embeddings\.InProceedings of the 47th International ACM SIGIR Conference on Research and Development in Information Retrieval,SIGIR ’24,New York, NY, USA,pp\. 641–649\.External Links:ISBN 9798400704314,[Link](https://doi.org/10.1145/3626772.3657878),[Document](https://dx.doi.org/10.1145/3626772.3657878)Cited by:[§4\.1](https://arxiv.org/html/2607.09092#S4.SS1.SSS0.Px2.p1.5),[§4\.1](https://arxiv.org/html/2607.09092#S4.SS1.SSS0.Px4.p1.1)\.
- B\. Yang, W\. Yih, X\. He, J\. Gao, and L\. Deng \(2015\)Embedding entities and relations for learning and inference in knowledge bases\.InInternational Conference on Learning Representations,External Links:[Link](https://arxiv.org/abs/1412.6575)Cited by:[§2\.1](https://arxiv.org/html/2607.09092#S2.SS1.p1.1)\.
- S\. Yao, J\. Zhao, D\. Yu, N\. Du, I\. Shafran, K\. Narasimhan, and Y\. Cao \(2023\)ReAct: synergizing reasoning and acting in language models\.InInternational Conference on Learning Representations,External Links:[Link](https://openreview.net/forum?id=WE_vluYUL-X)Cited by:[§1](https://arxiv.org/html/2607.09092#S1.p3.1),[§2\.1](https://arxiv.org/html/2607.09092#S2.SS1.p2.2)\.
## Appendix AComponent Combinations for Initial Query Writing
Table[3](https://arxiv.org/html/2607.09092#A1.T3)shows the example component combinations provided to the agent as a guide\. For each turn, the agent selects one combination and writes a single query\. The example queries are derived from the triple\(Hamlet, written by, Shakespeare\), wherep′p^\{\\prime\}denotes a paraphrased surface form of the predicate\.
Table 3:Component combinations example provided to the agent as a guide\.
## Appendix BGRPO Objective
Within each group ofGGtrajectories, the relative advantage of theii\-th trajectory is computed by standardizing its reward against the group statisticsShaoet al\.\([2024](https://arxiv.org/html/2607.09092#bib.bib18)\):
Ai=Ri−mean\(\{Rj\}j=1G\)std\(\{Rj\}j=1G\)\.A\_\{i\}=\\frac\{R\_\{i\}\-\\mathrm\{mean\}\(\\\{R\_\{j\}\\\}\_\{j=1\}^\{G\}\)\}\{\\mathrm\{std\}\(\\\{R\_\{j\}\\\}\_\{j=1\}^\{G\}\)\}\.\(6\)The trajectory\-level advantage is broadcast to every generated token, and the policy is updated by maximizing the clipped GRPO objective
ℒGRPO=\\displaystyle\\mathcal\{L\}\_\{\\text\{GRPO\}\}=𝔼\[1∑i\|τi\|∑i=1G∑t∈ℳimin\(ri,t\(θ\)Ai,\\displaystyle\\mathbb\{E\}\\Bigg\[\\frac\{1\}\{\\sum\_\{i\}\|\\tau\_\{i\}\|\}\\sum\_\{i=1\}^\{G\}\\sum\_\{t\\in\\mathcal\{M\}\_\{i\}\}\\min\\Big\(r\_\{i,t\}\(\\theta\)\\,A\_\{i\},\\,\(7\)clip\(ri,t\(θ\),1−ϵ,1\+ϵ\)Ai\)\]\\displaystyle\\quad\\mathrm\{clip\}\\big\(r\_\{i,t\}\(\\theta\),1\-\\epsilon,1\+\\epsilon\\big\)\\,A\_\{i\}\\Big\)\\Bigg\]−β𝔼\[DKL\(Pθ∥Pref\)\],\\displaystyle\-\\beta\\,\\mathbb\{E\}\\Big\[D\_\{\\text\{KL\}\}\\big\(P\_\{\\theta\}\\,\\\|\\,P\_\{\\text\{ref\}\}\\big\)\\Big\],whereri,t\(θ\)=Pθ\(ai,t∣si,t\)Pθold\(ai,t∣si,t\)r\_\{i,t\}\(\\theta\)=\\dfrac\{P\_\{\\theta\}\(a\_\{i,t\}\\mid s\_\{i,t\}\)\}\{P\_\{\\theta\_\{\\text\{old\}\}\}\(a\_\{i,t\}\\mid s\_\{i,t\}\)\}is the per\-token importance ratio,ϵ\\epsilonis the clipping range, andℳi\\mathcal\{M\}\_\{i\}denotes the set of*model\-generated*token positions in trajectoryτi\\tau\_\{i\}\. Tokens produced by the retrieval environment are excluded fromℳi\\mathcal\{M\}\_\{i\}\.
## Appendix CHard\-Negative Construction Statistics
Table 4:Hard\-negative statistics\.Mean Sim\.is the mean object cosine similarity between each positive and its negative\.Similar Articles
DeLIVeR: Decomposed Learning for Information-grounded Veracity Recognition via Reinforced Knowledge Graph Exploration
DeLIVeR is a framework that uses a reinforced planner LLM to decompose claims into question sets for structured knowledge graph traversal, improving fact-checking accuracy over static RAG baselines by 10-15% on benchmark datasets.
RAGA: Reading-And-Graph-building-Agent for Autonomous Knowledge Graph Construction and Retrieval-Augmented Generation
RAGA is an LLM-driven autonomous agent that constructs knowledge graphs via a read-search-verify-construct cognitive loop and integrates hybrid symbolic-vector retrieval for retrieval-augmented generation, with experimental gains on scientific QA datasets.
AgenticRAG: Agentic Retrieval for Enterprise Knowledge Bases
This paper introduces AgenticRAG, a framework from Microsoft that enhances enterprise knowledge base retrieval by equipping LLMs with tools for iterative search, document navigation, and analysis. It demonstrates significant improvements in recall and factuality over standard RAG pipelines on multiple benchmarks.
RSF-GLLM: Bridging the Semantic Gap in Multi-Hop Knowledge Graph QA via Recurrent Soft-Flow and Decoupled LLM Generation
This paper introduces RSF-GLLM, a framework that decouples differentiable graph reasoning from LLM generation to address the semantic gap in multi-hop knowledge graph question answering, achieving competitive performance with superior inference efficiency.
Enhancing Metacognitive AI: Knowledge-Graph Population with Graph-Theoretic LLM Enrichment
MetaKGEnrich is a fully automated pipeline that uses graph metrics to detect knowledge gaps in LLM applications, retrieves web evidence, and improves answer quality by 80-87% across three benchmark datasets.