DeLIVeR: Decomposed Learning for Information-grounded Veracity Recognition via Reinforced Knowledge Graph Exploration
Summary
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.
View Cached Full Text
Cached at: 07/21/26, 06:46 AM
# DeLIVeR: Decomposed Learning for Information-grounded Veracity Recognition via Reinforced Knowledge Graph Exploration
Source: [https://arxiv.org/html/2607.17935](https://arxiv.org/html/2607.17935)
11institutetext:University of Louisville, Louisville KY 40292, USA\.
11email:\{conghoan\.nguyen,hieu\.duong,l\.nguyen\}@louisville\.edu
22institutetext:Denison University, Granville, Ohio 43023, USA\.
22email:\{hoang\_t2\}@denison\.edu###### Abstract
Automated fact\-checking remains a challenge for Large Language Models \(LLMs\) due to "query brittleness" in traditional retrieval systems\. We propose DeLIVeR \(DecomposedLearning forInformation\-groundedVeacityRecognition\), a framework that treats evidence retrieval as a reinforced strategic exploration task\. DeLIVeR utilizes a Planner LLM to decompose complex claims into targeted question sets, which are used to traverse structured Knowledge Graphs \(KGs\) for high\-precision evidence\. We optimize the Planner’s policy using Group Relative Policy Optimization \(GRPO\) with a reward system prioritizing structural diversity and verdict accuracy\. Our evaluation on LIAR, FEVER, and PolitiFact shows that DeLIVeR significantly outperforms state\-of\-the\-art baselines\. Using Qwen2\.5\-7B, our framework achieved peak F1\-scores of 83\.73, 84\.57, and 79\.70 respectively, representing a 10–15% improvement over HippoRAG2\. By shifting to a reinforced question\-planning strategy, DeLIVeR effectively bridges multi\-hop reasoning gaps and provides an auditable, transparent path for verifiable misinformation detection\.
## 1Introduction
The proliferation of online misinformation poses a critical threat to public trust and democratic stability\. While Large Language Models \(LLMs\) offer sophisticated reasoning, they are frequently undermined by “hallucinations” stemming from a reliance on static internal knowledge rather than verifiable grounding\[[1](https://arxiv.org/html/2607.17935#bib.bib1),[3](https://arxiv.org/html/2607.17935#bib.bib3)\]\. Although Retrieval\-Augmented Generation \(RAG\) aims to mitigate this, existing frameworks struggle withmulti\-hop gaps,static query limitations, andfixed retrieval policiesthat fail to adapt to complex claims spanning multiple entities\[[38](https://arxiv.org/html/2607.17935#bib.bib38),[4](https://arxiv.org/html/2607.17935#bib.bib4),[5](https://arxiv.org/html/2607.17935#bib.bib5)\]\.
Figure 1:Comparison of fake news detection systems for the Mona Lisa theft claim\.To address these limitations, we propose DeLIVeR a framework that transforms fact verification from a static retrieval step into a reinforced, closed\-loop optimization process as shown in Figure[1](https://arxiv.org/html/2607.17935#S1.F1)\. Unlike domain\-adaptive approaches that focus primarily on feature\-level transformations,DeLIVeRoptimizes the model’s information\-seeking strategy\. Given a claim, a planner LLM generates a small set of diverse, targeted questions that collectively query a Knowledge Graph \(KG\) to retrieve complementary evidence\. This policy is optimized via Group Relative Policy Optimization \(GRPO\) to reward structural diversity and verdict accuracy\. In developing this framework, we specifically investigate whether a reinforced planner LLM can effectively bridge multi\-hop reasoning gaps compared to static RAG baselines\(RQ1\), the extent to which set\-based question planning reduces query ambiguity in structured KGs\(RQ2\), and if GRPO\-driven optimization yields a more stable and interpretable information\-seeking policy for veracity classification\(RQ3\)\.
Our contributions are as follows:
- •Structured multi\-hop grounding:We introduce a KG\-grounded evidence retrieval pipeline that moves beyond flat text retrieval by retrieving structured, multi\-hop evidence paths for claim verification\.
- •Set\-based question planning:We design a planner LLM that decomposes each claim into a cohesive set of diverse, targeted questions, reducing query ambiguity and improving evidence coverage over standard single\-query RAG\.
- •GRPO\-driven policy optimization:We fine\-tune the question generation module with GRPO using rewards that encourage valid format, structural diversity, and evidence quality, yielding a more stable information\-seeking policy\.
- •Empirical validation and interpretability:Experiments on FEVER, LIAR, and PolitiFact show consistent improvements over strong RAG baselines, while the question\-driven retrieval process provides inherent evidence chains for auditing model decisions\.
## 2Related Work
Early artificial intelligence systems for knowledge\-intensive tasks relied heavily on neural architectures such as Artificial Neural Networks \(ANNs\) and energy\-based models, particularly Discrete Hopfield Neural Networks \(DHNNs\), which demonstrated the foundational principles of structured reasoning and pattern recognition\. These early approaches established critical insights into logic mining and constraint satisfaction that continue to inform modern AI systems\. Notable contributions include flexible logic mining frameworks that combine ensemble multi\-attribute selection with DHNNs\[[72](https://arxiv.org/html/2607.17935#bib.bib72)\], investigations into weighted C\-type random 2\-satisfiability formulations within discrete Hopfield networks\[[73](https://arxiv.org/html/2607.17935#bib.bib73)\], and optimized logic mining methods leveraging higher\-order satisfiability representations\[[74](https://arxiv.org/html/2607.17935#bib.bib74)\]\. While these early neural and logic\-based paradigms demonstrated that structured, rule\-governed representations significantly improve classification reliability and interpretability, they typically operate on fixed propositional representations and do not address the open\-domain, multi\-hop evidence retrieval needed for modern fact verification over large, dynamic knowledge corpora\.
Fake news detection has progressed from feature\-based models\[[33](https://arxiv.org/html/2607.17935#bib.bib33),[34](https://arxiv.org/html/2607.17935#bib.bib34)\]to pretrained deep encoders such as BERT and RoBERTa\[[16](https://arxiv.org/html/2607.17935#bib.bib16),[17](https://arxiv.org/html/2607.17935#bib.bib17)\], which perform well on benchmarks including LIAR\[[35](https://arxiv.org/html/2607.17935#bib.bib35)\]and FEVER\[[36](https://arxiv.org/html/2607.17935#bib.bib36)\]\. However, veracity prediction with LLMs remains unreliable without explicit grounding, due to hallucinations and the absence of verifiable evidence attribution\[[18](https://arxiv.org/html/2607.17935#bib.bib18)\]\. Retrieval\-Augmented Generation \(RAG\) addresses this by conditioning predictions on external context\[[38](https://arxiv.org/html/2607.17935#bib.bib38)\], but standard RAG typically retrieves unstructured text using similarity\-based queries and often fails to capture the relational structure needed for claims involving multiple entities and linked events\[[15](https://arxiv.org/html/2607.17935#bib.bib15),[7](https://arxiv.org/html/2607.17935#bib.bib7)\]\. Recent graph\-based retrieval methods improve indexing and ranking, but they commonly treat the user query as fixed\. In contrast, DeLIVeR emphasizes structured KG evidence while optimizing the information\-seeking strategy through learned question sets\.
A second challenge is query ambiguity\. Many RAG systems rely on a single query derived directly from the claim, making retrieval brittle when the claim is underspecified or implicitly framed\. Prior work on claim decomposition shows that generating intermediate questions can improve reasoning\[[8](https://arxiv.org/html/2607.17935#bib.bib8),[9](https://arxiv.org/html/2607.17935#bib.bib9)\], and question generation models such as T5/BART have been used to produce subquestions\[[10](https://arxiv.org/html/2607.17935#bib.bib10)\]\. However, these approaches are often not trained to optimize the retrieval outcome needed for verification, especially when evidence must be gathered from complementary semantic facets \(e\.g\., temporal context, relations, contradictions\)\. Our approach introduces a Planner LLM that generates a small, diverse set of targeted questions to probe a KG from multiple angles, improving evidence coverage and reducing ambiguity for downstream verification\[[11](https://arxiv.org/html/2607.17935#bib.bib11)\]\.
Finally, optimizing retrieval behavior for black\-box LLM pipelines is difficult because gradients cannot be propagated through the verifier\. Existing methods align retrieval with LLM feedback using objectives such as KLD\-based techniques\[[12](https://arxiv.org/html/2607.17935#bib.bib12)\]or policy\-gradient style optimization\[[49](https://arxiv.org/html/2607.17935#bib.bib49)\], but PPO\-style approaches can be unstable in high\-dimensional generation spaces\[[50](https://arxiv.org/html/2607.17935#bib.bib50)\]\. We address this by applying Group Relative Policy Optimization \(GRPO\)\[[66](https://arxiv.org/html/2607.17935#bib.bib66)\]to optimize question\-set generation\. GRPO estimates advantages by comparing multiple outputs from the same claim, enabling stable updates without a centralized critic\. This provides a practical mechanism to learn a robust question\-generation policy that improves retrieval precision and supports accurate veracity decisions by rewarding high\-signal evidence while discouraging noisy retrieval\.
## 3Methodology
### 3\.1Overview
The proposed DeLIVeR framework presented in Figure[2](https://arxiv.org/html/2607.17935#S3.F2)consists of Knowledge Graphs \(KGs\), a two footprint LLM architecture and reinforcement learning to tackle the challenges associated with fake news detection by accurate evidence retrieval and knowledge\-based generating a verdict\. The system begins with KG sourced from a reliable dataset, with nodes representing entities or facts, with edges indicating relationships \(for example "supports", "contradicts", etc\), allowing for structured and contextual evidence query\[[43](https://arxiv.org/html/2607.17935#bib.bib43)\]\. The secondary LLM, fine\-tuned for question generation, processes the input claim to produce a cohesive set of targeted questions, collectively querying the KG to retrieve comprehensive evidence\[[47](https://arxiv.org/html/2607.17935#bib.bib47)\]\. The aggregated evidence from the question set, along with the claim, is then fed into a frozen primary LLM to generate a verdict \(True, False, Not Enough Information\) with a human\-interpretable explanation, ensuring stability and interpretability\[[38](https://arxiv.org/html/2607.17935#bib.bib38)\]\. Group Relative Policy Optimization \(GRPO\) iteratively refines the question\-generating LLM by evaluating the quality of retrieved evidence \(e\.g\., format, structure, accuracy\), optimizing retrieval effectiveness through reinforced feedback\[[49](https://arxiv.org/html/2607.17935#bib.bib49)\]\.
Figure 2:The overall DeLIVeR architecture operates through four key stages: generating a sequence of questions, querying the knowledge graph, extracting the supporting information set, and updating the generative model using GRPO\.This framework integrates other ideas previously proposed to produce an approach that integrates structured knowledge, adaptive queries, and reinforced feedback to provide robust and explainable means of detecting fake news\.
### 3\.2Problem Formulation
The veracity detection task inDeLIVeRis governed by the following conditional probability distribution, which decomposes the verdictyyinto a sequence of planning and retrieval steps:
P\(y\|c\)≈max𝒬\[P\(y\|c,Retrieve\(𝒬,𝒢\)\)⋅P\(𝒬\|c;θQ\)\]P\(y\|c\)\\approx\\max\_\{\\mathcal\{Q\}\}\\left\[P\(y\|c,\\text\{Retrieve\}\(\\mathcal\{Q\},\\mathcal\{G\}\)\)\\cdot P\(\\mathcal\{Q\}\|c;\\theta\_\{Q\}\)\\right\]\(1\)whereccis the input claim,𝒬=\{q1,…,qn\}\\mathcal\{Q\}=\\\{q\_\{1\},\\dots,q\_\{n\}\\\}is the set of generated questions, and𝒢\\mathcal\{G\}represents the structured Knowledge Graph\. Our objective is to optimize the parametersθQ\\theta\_\{Q\}such that the generated𝒬\\mathcal\{Q\}maximizes the likelihood of the correct verdictyythrough high\-quality evidence retrieval\.
### 3\.3Knowledge Graph Construction
To ensure the framework is grounded in verifiable facts while strictly avoiding label leakage and circular reasoning, we construct the Knowledge Graph \(KG\) using only the ground\-truth evidence corpora associated with each dataset\. We explicitly exclude claim text and veracity labels from the graph construction pipeline, utilizing GPT\-4 to perform Open Information Extraction \(OpenIE\) that transforms unstructured evidence into structured triples\(s,p,o\)\(s,p,o\)\(Subject–Predicate–Object\)\. To guarantee high\-fidelity retrieval, we implement a provenance\-tracking mechanism that maps every node and edge back to its source document URI, allowing the Verifier LLM to audit retrieved paths against the original text\.
Table 1:Quality Assessment of Extracting KG TriplesAs demonstrated in Table[1](https://arxiv.org/html/2607.17935#S3.T1), a manual quality assessment of 500 randomly sampled triples confirms the reliability of this process, yielding an Entity Precision of 94\.2% and a Triple Fidelity of 91\.8%\. Furthermore, we address temporal sensitivity by appending temporal metadata \(timestamps\) to edges when available in the source text\. During retrieval, the model prioritizes edges with timestamps closest to the claim’s publication date\. For noise control, we apply a frequency\-based filter that removes "singleton" entities that do not connect to at least two other nodes, ensuring the graph focuses on the dense, multi\-hop relationship clusters necessary for complex reasoning\.
### 3\.4Question Generation Module
The Question Generation Module is a core part of the DeLIVeR framework that leverages a hundred million parameters pretrained secondary large language model, to create relevant questions based on an input claim, in order to frame the language for targeted retrieval of relevant evidence from the KG for fake news verification\. Formally, given an input claimcc, the secondary LLMQQgenerates a set of questionsQ=\{q1,q2,…,qn\}Q=\\\{q\_\{1\},q\_\{2\},\\ldots,q\_\{n\}\\\}, with each questionqiq\_\{i\}to explore specific angles of the claim such as the source, evidence to substantiate claimcc, contextual factors which may affect the claim, or counter claims or contradictions, such as\! “What is the original source of claimcc?” “Is evidencexxin the KG contradictory to assertionyyin claimcc?” “What time factors impact the validity of eventzz?”\. The process is defined as𝒬\(c;θQ\)→Q⊆𝒫\(KG\)\\mathcal\{Q\}\(c;\\theta\_\{Q\}\)\\to Q\\subseteq\\mathcal\{P\}\(\\text\{KG\}\), whereθQ\\theta\_\{Q\}are the pretrained parameters of the LLM, and the question setQQis used collectively to query the KG, retrieving a unified set of evidence\. Each question generated is intended to cover multiple angles of the claim, such as factual, temporal, and causal, to facilitate a more richly supported collection of evidence from the KG and support multi\-hop reasoning, which is necessary in the evaluation of complex misinformation\. The question set is mapped to KG nodes and edges using vector similarity search, with embeddings of questions and KG elements ensuring contextually relevant evidence retrieval:
Score\(qi,ej\)=cos\(ϕ\(qi\),ϕ\(ej\)\),\\text\{Score\}\(q\_\{i\},e\_\{j\}\)=\\cos\(\\phi\(q\_\{i\}\),\\phi\(e\_\{j\}\)\),\(2\)whereϕ\(qi\)\\phi\(q\_\{i\}\)andϕ\(ej\)\\phi\(e\_\{j\}\)are embeddings for the question and KG element \(node or edge\)eje\_\{j\}, respectively, andcos\\cosdenotes cosine similarity\[[52](https://arxiv.org/html/2607.17935#bib.bib52)\]\. This scoring enables the selection of the most relevant KG elements, significantly improving the granularity and relevance of retrieved evidence compared to static query methods in standard RAG systems\.
To address redundancy and ensure comprehensive coverage of the KG’s relational structure, the question generation process incorporates a diversity constraint, encouraging the LLM to produce questions that span distinct subgraphs of the KG\. This is formalized by maximizing the entropy of question coverage:
H\(Q\)=−∑qi∈QP\(qi\|c\)logP\(qi\|c\),H\(Q\)=\-\\sum\_\{q\_\{i\}\\in Q\}P\(q\_\{i\}\|c\)\\log P\(q\_\{i\}\|c\),\(3\)whereP\(qi\|c\)P\(q\_\{i\}\|c\)is the probability of generating questionqiq\_\{i\}given claimcc, ensuring that questions probe varied aspects of the KG without overlap\[[53](https://arxiv.org/html/2607.17935#bib.bib53)\]\.
The generated questions are mapped to KG nodes and edges using a vector similarity search\. We utilize the embeddings of both the questions and the KG elements to generate evidence that is contextually relevant to the nuance of the claims\. The performance of the set of questions is refined iteratively using Group Relative Policy Optimization \(GRPO\), detailed in Section[3\.4](https://arxiv.org/html/2607.17935#S3.SS4), which adjustsθQ\\theta\_\{Q\}by evaluating the quality of the retrieved aggregated evidence\. This approach, different from static RAG pipelines, optimizes question sets to maximize the extraction of relevant evidence, enhancing the verification of abstract or ambiguous claims\[[49](https://arxiv.org/html/2607.17935#bib.bib49)\]\. In practice, this modification of objective function is what separates our approach from static RAG pipelines, where retrieving incomplete or irrelevant evidence is difficult\. By incorporating pre\-trained LLMs with KG retrieval optimized by GRPO, the Question Generation Module provides a necessary level of contextualized evidence extraction to support the system’s verification capabilities for complex claims in fake news detection and misinformation combat\.
### 3\.5Retrieval and Augmentation
The Retrieval and Augmentation module leverages a cohesive set of questions generated by the secondary LLM to collectively query the Knowledge Graph \(KG\) and retrieve a unified set of relevant evidence, which is then augmented with the input claim to enable the primary LLM to generate accurate verdicts for fake news detection\. For a given claimccand its set of questionsQ=\{q1,q2,…,qn\}Q=\\\{q\_\{1\},q\_\{2\},\\ldots,q\_\{n\}\\\}, the questions are embedded using a pretrained sentence encoder, and the evidence is retrieved from the KG by computing similarity scores between the question embeddings and the KG node/edge embeddings, formalized as:
Retrieve\(Q,G\)=⋃qi∈Qargmaxej∈Gcos\(ϕ\(qi\),ϕ\(ej\)\),\\text\{Retrieve\}\(Q,G\)=\\bigcup\_\{q\_\{i\}\\in Q\}\\arg\\max\_\{e\_\{j\}\\in G\}\\cos\(\\phi\(q\_\{i\}\),\\phi\(e\_\{j\}\)\),\(4\)whereG=\(V,E\)G=\(V,E\)is the KG,ϕ\(⋅\)\\phi\(\\cdot\)denotes the Sentence\-BERT embeddings, andcos\\cosis cosine similarity\[[52](https://arxiv.org/html/2607.17935#bib.bib52)\]\. The aggregated evidence setE=\{e1,e2,…,em\}E=\\\{e\_\{1\},e\_\{2\},\\ldots,e\_\{m\}\\\}is concatenated with the claimccto form an augmented input\[c;E\]\[c;E\], which is fed to the primary LLM to produce a verdict \(True, False, or Not Enough Information\) with an explanation\. The quality of the retrieved evidence is evaluated to inform iterative refinement of the question generation process\[[38](https://arxiv.org/html/2607.17935#bib.bib38)\]\. This process ensures the primary LLM leverages structured, contextually relevant evidence, enhancing verdict accuracy and interpretability compared to standard RAG systems that rely on unstructured text retrieval\.
Figure 3:Overview of the Group Relative Policy Optimization \(GRPO\) process for refining question generation\. Step 1: samples question sets\{Qi\}\\\{Q\_\{i\}\\\}from the policyπθQ\\pi\_\{\\theta\_\{Q\}\}and retrieves corresponding evidenceEiE\_\{i\}from the Knowledge Graph\. Step 2: computes the Format\-Structure\-Accuracy rewardR\(Qi,Ei\)R\(Q\_\{i\},E\_\{i\}\)for each set\. Step 3: calculates the group average reward and advantageA^\(Qi,Ei\)\\hat\{A\}\(Q\_\{i\},E\_\{i\}\)\. Step 4: updates the policy parametersθQ\\theta\_\{Q\}via the clipped objective to optimize retrieval effectiveness and verdict reliability\.
### 3\.6Reinforcement Learning Optimization
To bridge the gap between static retrieval and adaptive fact\-checking, we optimize the Question Generation \(QG\) module using Group Relative Policy Optimization \(GRPO\)\[[66](https://arxiv.org/html/2607.17935#bib.bib66)\]\. Unlike standard Proximal Policy Optimization \(PPO\), which relies on a centralized critic to estimate a state\-value baseline, GRPO computes advantages based on the relative performance of a group of outputs generated from the same prompt\. This is particularly advantageous for our framework because it allows the model to compare multiple diverse "question sets" for a single claim, identifying which specific combinations of queries maximize evidence coverage while minimizing retrieval noise\. Additionally, this approach enhances the quality of evidence retrieved from the Knowledge Graph \(KG\) for fake news detection, as illustrated in the GRPO process overview \(see Figure[3](https://arxiv.org/html/2607.17935#S3.F3)\)\. Given a claimc∈𝒟c\\in\\mathcal\{D\}, the LLM generates a group of question sets\{Qi\}i=1N⊆𝒯c\\\{Q\_\{i\}\\\}\_\{i=1\}^\{N\}\\subseteq\\mathcal\{T\}\_\{c\}, where eachQi=\{qi1,…,qiT\}Q\_\{i\}=\\\{q\_\{i1\},\\ldots,q\_\{iT\}\\\}is used to collectively query the KG, producing an aggregated evidence setEi=Retrieve\(Qi,G\)E\_\{i\}=\\text\{Retrieve\}\(Q\_\{i\},G\)\. We use the prompt, detailed in Table[2](https://arxiv.org/html/2607.17935#S3.T2), optimize the policyπθQ\\pi\_\{\\theta\_\{Q\}\}using the GRPO objective, defined as:
JGRPO\(θQ\)=𝔼c∼𝒟,\{Qi\}i=1N∼πθQold\(Q\|c;KG\)\[1N∑i=1Nmin\(ρθQ\(Qi\)A^\(Qi,Ei\),\\displaystyle J\_\{\\text\{GRPO\}\}\(\\theta\_\{Q\}\)=\\mathbb\{E\}\_\{c\\sim\\mathcal\{D\},\\\{Q\_\{i\}\\\}\_\{i=1\}^\{N\}\\sim\\pi\_\{\\theta\_\{Q\}^\{\\text\{old\}\}\}\(Q\|c;\\text\{KG\}\)\}\\Bigg\[\\frac\{1\}\{N\}\\sum\_\{i=1\}^\{N\}\\min\\Big\(\\rho\_\{\\theta\_\{Q\}\}\(Q\_\{i\}\)\\hat\{A\}\(Q\_\{i\},E\_\{i\}\),\(5\)clip\(ρθQ\(Qi\),1±ϵ\)A^\(Qi,Ei\)\)−βDKL\(πθQ∥πref\)\],\\displaystyle\\text\{clip\}\\left\(\\rho\_\{\\theta\_\{Q\}\}\(Q\_\{i\}\),1\\pm\\epsilon\\right\)\\hat\{A\}\(Q\_\{i\},E\_\{i\}\)\\Big\)\-\\beta D\_\{\\text\{KL\}\}\(\\pi\_\{\\theta\_\{Q\}\}\\parallel\\pi\_\{\\text\{ref\}\}\)\\Bigg\],whereρθQ\(Qi\)=πθQ\(Qi\|c;KG\)πθQold\(Qi\|c;KG\)\\rho\_\{\\theta\_\{Q\}\}\(Q\_\{i\}\)=\\frac\{\\pi\_\{\\theta\_\{Q\}\}\(Q\_\{i\}\|c;\\text\{KG\}\)\}\{\\pi\_\{\\theta\_\{Q\}^\{\\text\{old\}\}\}\(Q\_\{i\}\|c;\\text\{KG\}\)\}, and the advantage is:A^\(Qi,Ei\)=R\(Qi,Ei\)−1N∑j=1NR\(Qj,Ej\)/Fnorm\(\{R\(Qj,Ej\)\}j=1N\)\\hat\{A\}\(Q\_\{i\},E\_\{i\}\)=R\(Q\_\{i\},E\_\{i\}\)\-\\frac\{1\}\{N\}\\sum\_\{j=1\}^\{N\}R\(Q\_\{j\},E\_\{j\}\)/F\_\{\\text\{norm\}\}\(\\\{R\(Q\_\{j\},E\_\{j\}\)\\\}\_\{j=1\}^\{N\}\)and the reward function:R\(Qi,Ei\)=w1⋅RFormat\(Qi\)\+w2⋅RStructure\(Qi\)\+w3⋅RAccuracy\(Ei\),R\(Q\_\{i\},E\_\{i\}\)=w\_\{1\}\\cdot R\_\{\\text\{Format\}\}\(Q\_\{i\}\)\+w\_\{2\}\\cdot R\_\{\\text\{Structure\}\}\(Q\_\{i\}\)\+w\_\{3\}\\cdot R\_\{\\text\{Accuracy\}\}\(E\_\{i\}\),whereFnorm\(⋅\)F\_\{\\text\{norm\}\}\(\\cdot\)is a normalization function \(e\.g\., standard deviation\), andclip\(⋅\)\\text\{clip\}\(\\cdot\)stabilizes policy updates\[[50](https://arxiv.org/html/2607.17935#bib.bib50)\]\. GRPO’s group\-based comparison optimizes question sets to maximize the quality of retrieved evidence, enhancing retrieval effectiveness and verdict reliability over traditional RL methods\[[38](https://arxiv.org/html/2607.17935#bib.bib38),[49](https://arxiv.org/html/2607.17935#bib.bib49)\]\.
Format Reward \(RFormat\(Qi\)R\_\{\\text\{Format\}\}\(Q\_\{i\}\)\)\. This reward enforces strict adherence to the structured output format required for downstream retrieval and parsing\. The model must generate a reasoning trace within<think\></think\>tags followed by a numbered list of 4–8 questions within<answer\></answer\>, with no extraneous text\. We use regular expressions to validate: \- Exactly one<think\>block with coherent reasoning steps\. \- Exactly one<answer\>block containing a numbered list \(1\.,2\., etc\.\) with 4≤\\leqquestions≤\\leq8\. \- No content outside tags\. This is abinary reward:
RFormat\(Qi\)=\{1if format is valid,0otherwise\.R\_\{\\text\{Format\}\}\(Q\_\{i\}\)=\\begin\{cases\}1&\\text\{if format is valid\},\\\\ 0&\\text\{otherwise\}\.\\end\{cases\}\(6\)
Structural Reward \(RStructure\(Qi\)R\_\{\\text\{Structure\}\}\(Q\_\{i\}\)\)\. This is thecore signalfor effective evidence retrieval\. It evaluates whether the generated question setQiQ\_\{i\}coversdiverse semantic dimensionsof the claimcc\(e\.g\., entities, events, temporal context, causal links, contradictions\) to maximize informational breadth\. The computation proceeds in two steps: 1\. Each questionqij∈Qiq\_\{ij\}\\in Q\_\{i\}is classified into one ofKKpredefinedsemantic categories\(e\.g\.,WHO,WHAT,WHEN,WHERE,HOW,CONTRADICTION\) using a lightweight classifier \(e\.g\., fine\-tuned BERT or keyword patterns\)\. LetC\(Qi\)C\(Q\_\{i\}\)be the set of unique categories covered\. 2\. The reward is thecoverage ratiorelative to an ideal category distributionC∗C^\{\*\}\(derived from claim type or oracle analysis\):
RStructure\(Qi\)=\|C\(Qi\)∩C∗\|\|C∗\|∈\[0,1\]\.R\_\{\\text\{Structure\}\}\(Q\_\{i\}\)=\\frac\{\|C\(Q\_\{i\}\)\\cap C^\{\*\}\|\}\{\|C^\{\*\}\|\}\\quad\\in\[0,1\]\.\(7\)
Alternatively, for finer granularity, we compute Jaccard similarity over normalized question skeletons \(replacing named entities with\[ENT\], numbers with\[NUM\], etc\.\) to reward structural diversity beyond category labels\.RStructureR\_\{\\text\{Structure\}\}is assigned the highest weight \(w2≫w1,w3w\_\{2\}\\gg w\_\{1\},w\_\{3\}\) to prioritize comprehensive evidence gathering\.
Accuracy Reward \(RAccuracy\(Ei\)R\_\{\\text\{Accuracy\}\}\(E\_\{i\}\)\)\. This reward measures factual relevance of the retrieved evidenceEi=Retrieve\(Qi,G\)E\_\{i\}=\\text\{Retrieve\}\(Q\_\{i\},G\)to the claimcc\. We use a binary signal from an LLM judge \(e\.g\., Qwen2\.5\-72B\-Instruct\) or a fine\-tuned factuality classifier:
\- Input: Concatenated evidence\(Ei\)\(E\_\{i\}\)and claim\(c\)\(c\)\.
\- Output: LabelSUPPORTS,REFUTES, orNEI\. The reward is:
RAccuracy\(Ei\)=\{1if information is correct,0if hallucinated\.R\_\{\\text\{Accuracy\}\}\(E\_\{i\}\)=\\begin\{cases\}1&\\text\{if information is correct,\}\\\\ 0&\\text\{if hallucinated\}\.\\end\{cases\}\(8\)
By combining these three rewards, GRPO creates a hierarchical optimization landscape: the model is guided primarily by structure to explore the claim comprehensively, constrained by format for reliability, and refined by accuracy for verdict quality\. This yields question sets that are well\-formed, semantically rich, and evidentially potent, critical for robust misinformation detection\.
## 4Experiment and Results
### 4\.1Experimental Setup
#### 4\.1\.1Datasets
To evaluate our framework, we utilize three benchmark datasets for fake news detection, each with distinct characteristics to assess evidence retrieval, verdict accuracy, and explanation quality:
- •PolitiFact\[[54](https://arxiv.org/html/2607.17935#bib.bib54)\]: Contains political claims from U\.S\. media, annotated with veracity labels \(e\.g\., True, False, Pants on Fire\) and detailed justifications, ideal for testing verdict accuracy and explanation coherence\.
- •LIAR\[[35](https://arxiv.org/html/2607.17935#bib.bib35)\]: Comprises 12,8K short political statements from diverse sources, labeled with fine\-grained veracity categories \(e\.g\., True, Mostly True, False\), suitable for evaluating generalization across varied claims\.
- •FEVER\[[36](https://arxiv.org/html/2607.17935#bib.bib36)\]: Includes Wikipedia\-derived claims, annotated as Supported, Refuted, or Not Enough Information, with linked evidence, enabling robust assessment of evidence retrieval and multi\-hop reasoning\.
These datasets collectively challenge our framework’s ability to handle diverse claim types, structured evidence, and contextual nuances in misinformation detection, as summarized in Table[3](https://arxiv.org/html/2607.17935#S4.T3)\.
Table 3:Counts of real/fake news across datasets\.
#### 4\.1\.2Baseline
To benchmark our DeLIVeR framework, we compare it against five methods for fake news detection, each highlighting different retrieval and reasoning capabilities:
- •Vanilla LLM\[[1](https://arxiv.org/html/2607.17935#bib.bib1)\]: Uses a pretrained large language model for direct claim classification without external knowledge, prone to hallucinations in verification tasks\.
- •Naive RAG\[[38](https://arxiv.org/html/2607.17935#bib.bib38)\]: Performs one\-step retrieval from an unstructured corpus to augment prompts, often retrieving irrelevant or incomplete evidence due to lack of query refinement\.
- •LightRAG\[[55](https://arxiv.org/html/2607.17935#bib.bib55)\]: Employs graph\-enhanced indexing for faster, contextual retrieval, reducing computational overhead while maintaining accuracy in knowledge\-intensive queries\.
- •ReAct\[[56](https://arxiv.org/html/2607.17935#bib.bib56)\]: Interleaves reasoning and acting via chain\-of\-thought and tool calls \(e\.g\., search APIs\), enabling dynamic evidence gathering for multi\-hop fact\-checking\.
- •HippoRAG2\[[57](https://arxiv.org/html/2607.17935#bib.bib57)\]: Builds hierarchical knowledge graphs with personalized PageRank for incremental, context\-aware retrieval, excelling in integrating diverse evidence\.
#### 4\.1\.3Implementation Details
Our DeLIVeR framework utilizes GPT\-4 for constructing the Knowledge Graph from verified datasets, leveraging its advanced language understanding for entity and relationship extraction\[[60](https://arxiv.org/html/2607.17935#bib.bib60)\]\. For the question generation and verdict prediction, we benchmark three scales of Qwen2\.5 \(1\.5B, 3B, and 7B parameters\), evaluating their performance across diverse claim complexities\[[58](https://arxiv.org/html/2607.17935#bib.bib58)\]\. The retrieval module employs the bge\-large\-en\-v1\.5 model for embedding questions and KG elements, ensuring robust similarity\-based evidence extraction\[[59](https://arxiv.org/html/2607.17935#bib.bib59)\]\.
GRPO Training Configuration: We implement GRPO optimization using a group size ofN=8N=8question sets per claim for reliable advantage estimation\. The reward function weights are set asw1=0\.15w\_\{1\}=0\.15,w2=0\.60w\_\{2\}=0\.60, andw3=0\.25w\_\{3\}=0\.25, wherew2≫w1,w3w\_\{2\}\\gg w\_\{1\},w\_\{3\}to prioritize structural diversity as described in Section 4\.6\. We use a clipping parameterϵ=0\.20\\epsilon=0\.20and KL penalty coefficientβ=0\.04\\beta=0\.04to ensure stable policy updates\. Training is performed on four NVIDIA A100 GPUs \(80GB\) with a learning rate of5×10−65\\times 10^\{\-6\}and global batch size of 32 claims\. For Qwen2\.5\-7B, GRPO fine\-tuning converges in approximately 10\.5 hours, while the 1\.5B and 3B variants require 3\.0 and 5\.5 hours respectively\. Complete hyperparameters and KG statistics are detailed in Table[4](https://arxiv.org/html/2607.17935#S4.T4)\.
Table 4:DeLIVeR Training Hyperparameters and Knowledge Graph Statistics
### 4\.2Main Results
Table[5](https://arxiv.org/html/2607.17935#S4.T5)presents a comprehensive evaluation of our DeLIVeR framework against five baselines include Vanilla LLM, Naive RAG, LightRAG, ReAct, and HippoRAG2 across the LIAR, FEVER, and PolitiFact datasets, using three scales of the Qwen2\.5 model \(1\.5B, 3B, and 7B parameters\)\. Our framework consistently outperforms all baselines across recall, precision, accuracy, and F1\-score, achieving peak F1\-scores of 83\.73 \(LIAR\), 84\.57 \(FEVER\), and 79\.70 \(PolitiFact\) with Qwen2\.5\-7B, compared to HippoRAG2’s best F1\-scores of 72\.93, 75\.16, and 69\.97, respectively\. This represents an average F1 improvement of 10–15% over HippoRAG2, the closest competitor, highlighting the efficacy of our knowledge graph \(KG\) integration and Group Relative Policy Optimization \(GRPO\)\-driven question set generation\. The performance gap widens with larger model scales, with Qwen2\.5\-7B yielding the highest scores due to its enhanced reasoning capacity, which better leverages the structured evidence retrieved from the KG\. FEVER consistently produces the highest scores across all methods, likely due to its structured Wikipedia\-based evidence annotations, which align well with our framework’s multi\-hop reasoning capabilities\. In contrast, PolitiFact’s smaller dataset size \(744 samples\) and nuanced veracity labels \(e\.g\., Pants on Fire\) pose greater challenges, yet our framework still achieves robust performance \(F1 of 79\.70 with Qwen2\.5\-7B\), demonstrating its ability to handle complex, real\-world misinformation scenarios\.
Table 5:Performance Metrics on MultiReQA Datasets
### 4\.3Ablation Study
#### 4\.3\.1Impact of question set size:
We ablate question set size using Qwen2\.5\-7B\-Instruct on LIAR, FEVER, and PolitiFact \(Figure[4](https://arxiv.org/html/2607.17935#S4.F4)\)\. Peak F1\-scores are achieved with four questions: 0\.8373 \(LIAR\), 0\.8457 \(FEVER\), and 0\.7970 \(PolitiFact\), confirming the optimal balance between evidence coverage and relevance\. Performance declines with eight questions \(0\.8297, 0\.8389, 0\.7900\) due to redundancy and with sixteen questions \(0\.8221, 0\.8317, 0\.7835\) due to retrieval noise\. Only two questions yield the lowest scores \(0\.8115, 0\.8216, 0\.7625\) from insufficient evidence diversity\. FEVER benefits most from structured evidence, while PolitiFact remains the hardest due to nuanced labels and limited data\. These results validate GRPO’s effectiveness in producing concise, high\-quality question sets and underscore the importance of tuning set size for robust retrieval and verdict accuracy in misinformation detection\.
Figure 4:The impact of the number of generated questions
#### 4\.3\.2Qualitative Evaluation
Figure[5](https://arxiv.org/html/2607.17935#S4.F5)illustrates the qualitative performance of our DeLIVeR framework \(Qwen2\.5\-7B\-Instruct\) against Vanilla LLM, Naive RAG, LightRAG, ReAct, and HippoRAG2 across six categories for misinformation detection: Knowledge\-ability, Comprehensiveness, Factuality, Logical Coherence, Relevance, and Correctness\. Evaluated on LIAR, FEVER, and PolitiFact, our framework achieves top scores: 83\.2 \(Knowledge\-ability, Relevance\), 75\.12 \(Comprehensiveness\), 82\.45 \(Factuality\), 68\.4 \(Logical Coherence\), and 75\.25 \(Correctness\), outperforming ReAct’s 72\.4, 67\.7, 79\.9, 58\.6, 77\.2, and 69\.3, respectively\. KG\-driven retrieval and GRPO\-optimized questions enhance Factuality and Relevance, while Vanilla LLM struggles \(e\.g\., 40\.3 in Logical Coherence\) due to limited knowledge\. Naive RAG \(65\.1 in Knowledge\-ability\), LightRAG \(69\.3\), and HippoRAG2 \(59\.0 in Factuality\) lag behind\. These results validate our framework’s robust, coherent verdicts for misinformation detection\.
Figure 5:Qualitative performance of our DeLIVeR framework in six categories\.Table 6:Distribution of errors based on 200 examples from POLITIFACT, where DeLIVeR gives incorrect verification results\.
#### 4\.3\.3Error analysis of the retrieval process:
We conduct error analysis on 200 PolitiFact failure cases where DeLIVeR predicts incorrect verdicts\. Manual annotation reveals four error types \(Table[6](https://arxiv.org/html/2607.17935#S4.T6)\): Document Mismatch \(48%\) dominates, indicating poor alignment between questions and retrieved evidence, especially for nuanced or temporally sensitive claims\. Insufficient Coverage \(34%\) ranks second, showing that critical aspects \(e\.g\., motive, source credibility\) are sometimes missed, particularly in “Mostly False”/“Half\-True” claims\. Encouragingly, Irrelevant Questions \(16%\) and Redundant Questions \(14%\) together account for only 30%, confirming that GRPO effectively generates focused, non\-repetitive questions\. This supports our ablation finding that four questions achieve optimal balance\. These results highlight the need to \(1\) improve question\-evidence alignment via retriever fine\-tuning and \(2\) strengthen GRPO rewards to penalize Document Mismatch more heavily\. Addressing these will significantly enhance retrieval\-augmented fact\-checking robustness\.
## 5Conclusion
We presented a fact\-verification architecture that integrates knowledge graph grounding and targeted, set\-based question planning on top of a frozen verifier trained through GRPO to monotonically improve accuracy, interpretability, and robustness over LLM\-only and recent RAG baselines\. By decomposing claims into focused questions, retrieving precise multi\-hop evidence, and rationalizing a True/False/NEI decision with user\-aligned feedback, our approach produces fully auditable reasoning traces suitable for high\-stakes applications such as newsrooms, content moderation teams, election monitoring, public health communication, and enterprise compliance workflows\. Unlike black\-box LLM judgments or noisy single\-shot RAG retrievals, our method exposes every inference step from generated questions to retrieved KG paths to final verdict—enabling human auditors to verify or contest any component\. This transparency is critical when decisions influence policy, public perception, or legal outcomes\. We show that the combination of structured retrieval and reinforced question generation narrows the gap between raw model power and real\-world trust requirements, achieving state\-of\-the\-art verdict accuracy while delivering human\-readable explanations at scale\. Ultimately, this work advances toward deployable, accountable AI systems capable of combating misinformation with both rigor and responsibility\.
## 6Acknowledgment
This work was supported by NSF \- USA CNS\-2219614\.
## References
- \[1\]Ji, Z\., Lee, N\., Frieske, R\., Yu, T\., Su, D\., Xu, Y\., Ishii, E\., Bang, Y\., Madotto, A\. & Fung, P\. Survey of hallucination in natural language generation\.ACM Computing Surveys\.55, 1\-38 \(2023\)
- \[2\]Mitchell, A\., Jurkowitz, M\., Oliphant, J\. & Shearer, E\. Americans who mainly get their news on social media are less engaged, less knowledgeable\.Pew Research Center\.30\(2020\)
- \[3\]Zhang, Y\., Li, Y\., Cui, L\., Cai, D\., Liu, L\., Fu, T\., Huang, X\., Zhao, E\., Zhang, Y\., Chen, Y\. & Others Siren’s Song in the AI Ocean: A Survey on Hallucination in Large Language Models\.Computational Linguistics\.51, 1373\-1418 \(2025\)
- \[4\]Potthast, M\., Kiesel, J\., Reinartz, K\., Bevendorff, J\. & Stein, B\. A stylometric inquiry into hyperpartisan and fake news\.Proceedings Of The 56th Annual Meeting Of The Association For Computational Linguistics \(volume 1: Long Papers\)\. pp\. 231\-240 \(2018\)
- \[5\]Qian, F\., Gong, C\., Sharma, K\. & Liu, Y\. Neural user response generator: Fake news detection with collective user intelligence\.\.IJCAI\.18pp\. 3834\-3840 \(2018\)
- \[6\]Mosallanezhad, A\., Karami, M\., Shu, K\., Mancenido, M\. & Liu, H\. Domain adaptive fake news detection via reinforcement learning\.Proceedings Of The ACM Web Conference 2022\. pp\. 3632\-3640 \(2022\)
- \[7\]Khattab, O\., Santhanam, K\., Li, X\., Hall, D\., Liang, P\., Potts, C\. & Zaharia, M\. Demonstrate\-search\-predict: Composing retrieval and language models for knowledge\-intensive nlp\.ArXiv Preprint ArXiv:2212\.14024\. \(2022\)
- \[8\]Press, O\., Zhang, M\., Min, S\., Schmidt, L\., Smith, N\. & Lewis, M\. Measuring and narrowing the compositionality gap in language models\.Findings Of The Association For Computational Linguistics: EMNLP 2023\. pp\. 5687\-5711 \(2023\)
- \[9\]Chen, J\., Sriram, A\., Choi, E\. & Durrett, G\. Generating literal and implied subquestions to fact\-check complex claims\.Proceedings Of The 2022 Conference On Empirical Methods In Natural Language Processing\. pp\. 3495\-3516 \(2022\)
- \[10\]Ousidhoum, N\., Yuan, Z\. & Vlachos, A\. Varifocal question generation for fact\-checking\.Proceedings Of The 2022 Conference On Empirical Methods In Natural Language Processing\. pp\. 2532\-2544 \(2022\)
- \[11\]Yasunaga, M\., Ren, H\., Bosselut, A\., Liang, P\. & Leskovec, J\. QA\-GNN: Reasoning with language models and knowledge graphs for question answering\.Proceedings Of The 2021 Conference Of The North American Chapter Of The Association For Computational Linguistics: Human Language Technologies\. pp\. 535\-546 \(2021\)
- \[12\]Shi, W\., Min, S\., Yasunaga, M\., Seo, M\., James, R\., Lewis, M\., Zettlemoyer, L\. & Yih, W\. Replug: Retrieval\-augmented black\-box language models\.Proceedings Of The 2024 Conference Of The North American Chapter Of The Association For Computational Linguistics: Human Language Technologies \(Volume 1: Long Papers\)\. pp\. 8371\-8384 \(2024\)
- \[13\]Shi, T\., Karpathy, A\., Fan, L\., Hernandez, J\. & Liang, P\. World of bits: An open\-domain platform for web\-based agents\.International Conference On Machine Learning\. pp\. 3135\-3144 \(2017\)
- \[14\]Gur, I\., Rueckert, U\., Faust, A\. & Hakkani\-Tur, D\. Learning to navigate the web\.ArXiv Preprint ArXiv:1812\.09195\. \(2018\)
- \[15\]Jiang, Z\., Xu, F\., Gao, L\., Sun, Z\., Liu, Q\., Dwivedi\-Yu, J\., Yang, Y\., Callan, J\. & Neubig, G\. Active retrieval augmented generation\.Proceedings Of The 2023 Conference On Empirical Methods In Natural Language Processing\. pp\. 7969\-7992 \(2023\)
- \[16\]Devlin, J\., Chang, M\., Lee, K\. & Toutanova, K\. Bert: Pre\-training of deep bidirectional transformers for language understanding\.Proceedings Of The 2019 Conference Of The North American Chapter Of The Association For Computational Linguistics: Human Language Technologies, Volume 1 \(long And Short Papers\)\. pp\. 4171\-4186 \(2019\)
- \[17\]Liu, Y\., Ott, M\., Goyal, N\., Du, J\., Joshi, M\., Chen, D\., Levy, O\., Lewis, M\., Zettlemoyer, L\. & Stoyanov, V\. Roberta: A robustly optimized bert pretraining approach\.ArXiv Preprint ArXiv:1907\.11692\. \(2019\)
- \[18\]Zhang, X\. & Gao, W\. Towards llm\-based fact verification on news claims with a hierarchical step\-by\-step prompting method\.Proceedings Of The 13th International Joint Conference On Natural Language Processing And The 3rd Conference Of The Asia\-pacific Chapter Of The Association For Computational Linguistics \(volume 1: Long Papers\)\. pp\. 996\-1011 \(2023\)
- \[19\]Adolphs, L\., Boerschinger, B\., Buck, C\., Huebscher, M\., Ciaramita, M\., Espeholt, L\., Hofmann, T\., Kilcher, Y\., Rothe, S\., Sessa, P\. & Others Boosting search engines with interactive agents\.ArXiv Preprint ArXiv:2109\.00527\. \(2021\)
- \[20\]Yuan, X\., Fu, J\., Cote, M\., Tay, Y\., Pal, C\. & Trischler, A\. Interactive machine comprehension with information seeking agents\.Proceedings Of The 58th Annual Meeting Of The Association For Computational Linguistics\. pp\. 2325\-2338 \(2020\)
- \[21\]Ziegler, D\., Stiennon, N\., Wu, J\., Brown, T\., Radford, A\., Amodei, D\., Christiano, P\. & Irving, G\. Fine\-tuning language models from human preferences\.ArXiv Preprint ArXiv:1909\.08593\. \(2019\)
- \[22\]Ibarz, B\., Leike, J\., Pohlen, T\., Irving, G\., Legg, S\. & Amodei, D\. Reward learning from human preferences and demonstrations in atari\.Advances In Neural Information Processing Systems\.31\(2018\)
- \[23\]Christiano, P\., Leike, J\., Brown, T\., Martic, M\., Legg, S\. & Amodei, D\. Deep reinforcement learning from human preferences\.Advances In Neural Information Processing Systems\.30\(2017\)
- \[24\]Lin, Y\., Han, X\., Xie, R\., Liu, Z\. & Sun, M\. Knowledge representation learning: A quantitative review\.ArXiv Preprint ArXiv:1812\.10901\. \(2018\)
- \[25\]Wang, Q\., Mao, Z\., Wang, B\. & Guo, L\. Knowledge graph embedding: A survey of approaches and applications\.IEEE Transactions On Knowledge And Data Engineering\.29, 2724\-2743 \(2017\)
- \[26\]Chen, X\., Jia, S\. & Xiang, Y\. A review: Knowledge reasoning over knowledge graph\.Expert Systems With Applications\.141pp\. 112948 \(2020\)
- \[27\]Wu, T\., Qi, G\., Li, C\. & Wang, M\. A survey of techniques for constructing Chinese knowledge graphs and their applications\.Sustainability\.10, 3245 \(2018\)
- \[28\]Paulheim, H\. Knowledge graph refinement: A survey of approaches and evaluation methods\.Semantic Web\.8, 489\-508 \(2016\)
- \[29\]Nickel, M\., Murphy, K\., Tresp, V\. & Gabrilovich, E\. A review of relational machine learning for knowledge graphs\.Proceedings Of The IEEE\.104, 11\-33 \(2015\)
- \[30\]Ehrlinger, L\. & Wöß, W\. Towards a definition of knowledge graphs\.\.SEMANTiCS \(Posters, Demos, SuCCESS\)\.48, 2 \(2016\)
- \[31\]Bonatti, P\., Decker, S\., Polleres, A\. & Presutti, V\. Knowledge graphs: New directions for knowledge representation on the semantic web \(dagstuhl seminar 18371\)\.Dagstuhl Reports\.8, 29\-111 \(2019\)
- \[32\]Bergman, M\. A COMMON SENSE VIEW OF KNOWLEDGE GRAPHS\. \(2019\), https://api\.semanticscholar\.org/CorpusID:204957313
- \[33\]Shu, K\., Sliva, A\., Wang, S\., Tang, J\. & Liu, H\. Fake news detection on social media: A data mining perspective\.ACM SIGKDD Explorations Newsletter\.19, 22\-36 \(2017\)
- \[34\]Turchi, M\., Negri, M\. & Federico, M\. MT Quality Estimation for Computer\-assisted Translation: Does it Really Help?\.Proceedings Of The 53rd Annual Meeting Of The Association For Computational Linguistics And The 7th International Joint Conference On Natural Language Processing \(Volume 2: Short Papers\)\. pp\. 530\-535 \(2015\)
- \[35\]Wang, W\. " liar, liar pants on fire": A new benchmark dataset for fake news detection\.ArXiv Preprint ArXiv:1705\.00648\. \(2017\)
- \[36\]Thorne, J\., Vlachos, A\., Christodoulopoulos, C\. & Mittal, A\. FEVER: a large\-scale dataset for fact extraction and VERification\.ArXiv Preprint ArXiv:1803\.05355\. \(2018\)
- \[37\]Zhou, X\. & Zafarani, R\. A survey of fake news: Fundamental theories, detection methods, and opportunities\.ACM Computing Surveys \(CSUR\)\.53, 1\-40 \(2020\)
- \[38\]Lewis, P\., Perez, E\., Piktus, A\., Petroni, F\., Karpukhin, V\., Goyal, N\., Küttler, H\., Lewis, M\., Yih, W\., Rocktäschel, T\. & Others Retrieval\-augmented generation for knowledge\-intensive nlp tasks\.Advances In Neural Information Processing Systems\.33pp\. 9459\-9474 \(2020\)
- \[39\]Guu, K\., Lee, K\., Tung, Z\., Pasupat, P\. & Chang, M\. Retrieval augmented language model pre\-training\.International Conference On Machine Learning\. pp\. 3929\-3938 \(2020\)
- \[40\]Salemi, A\. & Zamani, H\. Evaluating retrieval quality in retrieval\-augmented generation\.Proceedings Of The 47th International ACM SIGIR Conference On Research And Development In Information Retrieval\. pp\. 2395\-2400 \(2024\)
- \[41\]Asai, A\., Wu, Z\., Wang, Y\., Sil, A\. & Hajishirzi, H\. Self\-rag: Learning to retrieve, generate, and critique through self\-reflection\. \(ICLR,2024\)
- \[42\]Nakano, R\., Hilton, J\., Balaji, S\., Wu, J\., Ouyang, L\., Kim, C\., Hesse, C\., Jain, S\., Kosaraju, V\., Saunders, W\. & Others Webgpt: Browser\-assisted question\-answering with human feedback\.ArXiv Preprint ArXiv:2112\.09332\. \(2021\)
- \[43\]Hogan, A\., Blomqvist, E\., Cochez, M\., D’Amato, C\., Melo, G\., Gutierrez, C\., Kirrane, S\., Gayo, J\., Navigli, R\., Neumaier, S\. & Others Knowledge graphs\.ACM Computing Surveys \(Csur\)\.54, 1\-37 \(2021\)
- \[44\]Ji, S\., Pan, S\., Cambria, E\., Marttinen, P\. & Yu, P\. A survey on knowledge graphs: Representation, acquisition, and applications\.IEEE Transactions On Neural Networks And Learning Systems\.33, 494\-514 \(2021\)
- \[45\]Hu, L\., Yang, T\., Zhang, L\., Zhong, W\., Tang, D\., Shi, C\., Duan, N\. & Zhou, M\. Compare to the knowledge: Graph neural fake news detection with external knowledge\.Proceedings Of The 59th Annual Meeting Of The Association For Computational Linguistics And The 11th International Joint Conference On Natural Language Processing \(volume 1: Long Papers\)\. pp\. 754\-763 \(2021\)
- \[46\]Rajpurkar, P\., Zhang, J\., Lopyrev, K\. & Liang, P\. Squad: 100,000\+ questions for machine comprehension of text\.ArXiv Preprint ArXiv:1606\.05250\. \(2016\)
- \[47\]Lewis, M\., Liu, Y\., Goyal, N\., Ghazvininejad, M\., Mohamed, A\., Levy, O\., Stoyanov, V\. & Zettlemoyer, L\. BART: Denoising sequence\-to\-sequence pre\-training for natural language generation, translation, and comprehension\.ArXiv Preprint ArXiv:1910\.13461\. \(2019\)
- \[48\]Raffel, C\., Shazeer, N\., Roberts, A\., Lee, K\., Narang, S\., Matena, M\., Zhou, Y\., Li, W\. & Liu, P\. Exploring the limits of transfer learning with a unified text\-to\-text transformer\.Journal Of Machine Learning Research\.21, 1\-67 \(2020\)
- \[49\]Ouyang, L\., Wu, J\., Jiang, X\., Almeida, D\., Wainwright, C\., Mishkin, P\., Zhang, C\., Agarwal, S\., Slama, K\., Ray, A\. & Others Training language models to follow instructions with human feedback\.Advances In Neural Information Processing Systems\.35pp\. 27730\-27744 \(2022\)
- \[50\]Schulman, J\., Wolski, F\., Dhariwal, P\., Radford, A\. & Klimov, O\. Proximal policy optimization algorithms\.ArXiv Preprint ArXiv:1707\.06347\. \(2017\)
- \[51\]Edge, D\., Trinh, H\., Cheng, N\., Bradley, J\., Chao, A\., Mody, A\., Truitt, S\., Metropolitansky, D\., Ness, R\. & Larson, J\. From local to global: A graph rag approach to query\-focused summarization\.ArXiv Preprint ArXiv:2404\.16130\. \(2024\)
- \[52\]Reimers, N\. & Gurevych, I\. Sentence\-bert: Sentence embeddings using siamese bert\-networks\.ArXiv Preprint ArXiv:1908\.10084\. \(2019\)
- \[53\]Yang, Z\., Qi, P\., Zhang, S\., Bengio, Y\., Cohen, W\., Salakhutdinov, R\. & Manning, C\. HotpotQA: A dataset for diverse, explainable multi\-hop question answering\.ArXiv Preprint ArXiv:1809\.09600\. \(2018\)
- \[54\]Shu, K\., Mahudeswaran, D\., Wang, S\., Lee, D\. & Liu, H\. Fakenewsnet: A data repository with news content, social context, and spatiotemporal information for studying fake news on social media\.Big Data\.8, 171\-188 \(2020\)
- \[55\]Guo, Z\., Xia, L\., Yu, Y\., Ao, T\. & Huang, C\. Lightrag: Simple and fast retrieval\-augmented generation\.ArXiv Preprint ArXiv:2410\.05779\. \(2024\)
- \[56\]Yao, S\., Zhao, J\., Yu, D\., Du, N\., Shafran, I\., Narasimhan, K\. & Cao, Y\. React: Synergizing reasoning and acting in language models\.International Conference On Learning Representations \(ICLR\)\. \(2023\)
- \[57\]Jimenez Gutierrez, B\., Shu, Y\., Gu, Y\., Yasunaga, M\. & Su, Y\. Hipporag: Neurobiologically inspired long\-term memory for large language models\.Advances In Neural Information Processing Systems\.37pp\. 59532\-59569 \(2024\)
- \[58\]Team, Q\. & Others Qwen2 technical report\.ArXiv Preprint ArXiv:2407\.10671\.2pp\. 3 \(2024\)
- \[59\]Chen, J\., Xiao, S\., Zhang, P\., Luo, K\., Lian, D\. & Liu, Z\. Bge m3\-embedding: Multi\-lingual, multi\-functionality, multi\-granularity text embeddings through self\-knowledge distillation\.ArXiv Preprint ArXiv:2402\.03216\. \(2024\)
- \[60\]Achiam, J\., Adler, S\., Agarwal, S\., Ahmad, L\., Akkaya, I\., Aleman, F\., Almeida, D\., Altenschmidt, J\., Altman, S\., Anadkat, S\. & Others Gpt\-4 technical report\.ArXiv Preprint ArXiv:2303\.08774\. \(2023\)
- \[61\]Allcott, H\. & Gentzkow, M\. Social media and fake news in the 2016 election\.Journal Of Economic Perspectives\.31, 211\-236 \(2017\)
- \[62\]Chen, M\. Evaluating large language models trained on code\.ArXiv Preprint ArXiv:2107\.03374\. \(2021\)
- \[63\]Zellers, R\., Holtzman, A\., Rashkin, H\., Bisk, Y\., Farhadi, A\., Roesner, F\. & Choi, Y\. Defending against neural fake news\.Advances In Neural Information Processing Systems\.32\(2019\)
- \[64\]Bang, Y\., Cahyawijaya, S\., Lee, N\., Dai, W\., Su, D\., Wilie, B\., Lovenia, H\., Ji, Z\., Yu, T\., Chung, W\. & Others A multitask, multilingual, multimodal evaluation of chatgpt on reasoning, hallucination, and interactivity\.ArXiv Preprint ArXiv:2302\.04023\. \(2023\)
- \[65\]Vrandečić, D\. & Krötzsch, M\. Wikidata: a free collaborative knowledgebase\.Communications Of The ACM\.57, 78\-85 \(2014\)
- \[66\]Shao, Z\., Wang, P\., Zhu, Q\., Xu, R\., Song, J\., Bi, X\., Zhang, H\., Zhang, M\., Li, Y\., Wu, Y\. & Others Deepseekmath: Pushing the limits of mathematical reasoning in open language models\.ArXiv Preprint ArXiv:2402\.03300\. \(2024\)
- \[67\]Ngai, C\., Singh, R\. & Yao, L\. Impact of COVID\-19 vaccine misinformation on social media virality: content analysis of message themes and writing strategies\.Journal Of Medical Internet Research\.24, e37806 \(2022\)
- \[68\]Vivion, M\., Trottier, V\., Bouhêlier, È\., Goupil\-Sormany, I\., Diallo, T\. & Others Misinformation about climate change and related environmental events on social media: Protocol for a scoping review\.JMIR Research Protocols\.13, e59345 \(2024\)
- \[69\]Govindankutty, S\. & Gopalan, S\. Epidemic modeling for misinformation spread in digital networks through a social intelligence approach\.Scientific Reports\.14, 19100 \(2024\)
- \[70\]Aïmeur, E\., Amri, S\. & Brassard, G\. Fake news, disinformation and misinformation in social media: a review\.Social Network Analysis And Mining\.13, 30 \(2023\)
- \[71\]Vosoughi, S\., Roy, D\. & Aral, S\. The spread of true and false news online\.Science\.359, 1146\-1151 \(2018\)
- \[72\]Gao, Y\., Jiang, X\., Kasihmuddin, M\., Zheng, C\., Chen, J\., Liu, X\. & Guo, Y\. FGRA: Toward flexible logic mining with ensemble multi\-attribute selection and Discrete Hopfield Neural Network\.Journal Of Computational Design And Engineering\.13, 88\-107 \(2026\)
- \[73\]Chang, Y\., Kasihmuddin, M\., Ruzai, W\., Guo, Y\. & Chen, J\. Weighted C\-type random 2 satisfiability in discrete hopfield neural network\.Engineering Applications Of Artificial Intelligence\.160pp\. 111760 \(2025\)
- \[74\]Romli, N\., Zulkepli, N\., Kasihmuddin, M\., Karim, S\., Jamaludin, S\., Rusdi, N\., Manoharam, G\., Mansor, M\. & Zamri, N\. An optimized logic mining method for data processing through higher\-order satisfiability representation in discrete Hopfield neural network\.Applied Soft Computing\. pp\. 113759 \(2025\)Similar Articles
AgentKGV: Agentic LLM-RAG Framework with Two-Stage Training for the Fact Verification of Knowledge Graphs
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.
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.
Debate-on-Graph: Reliable and Adaptive Reasoning of Large Language Model on Uncertain Knowledge Graph
Debate-on-Graph (DoG) is a framework that enhances LLM reasoning by leveraging uncertain knowledge graphs (UKGs) with confidence scores, using a heuristic search and multi-agent debate mechanism to produce reliable answers. It achieves state-of-the-art performance on four QA benchmarks.
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.
@tom_doerr: Knowledge graph framework for RAG using semantic aggregation and hierarchical retrieval https://github.com/KnowledgeXLa…
LeanRAG is an open-source framework that enhances Retrieval-Augmented Generation using knowledge graph structures with semantic aggregation and hierarchical retrieval for context-aware, high-fidelity responses. It has been accepted at AAAI-26.