Everything K-culture — comebacks to K-beauty, straight to your inboxGet it in your inbox

METAL MEDIA

MissDiag: Diagnostic Evaluation of Incomplete-Knowledge Robustness in KGQA and KG-RAG

arXiv:2608.184892026-08-20

A diagnostic tool that reveals why knowledge-graph QA systems break when information is missing

Knowledge-graph question answering systems degrade when their supporting graph is incomplete, but past evaluations only reported how much performance dropped, not why. MissDiag removes graph evidence in four distinct, structured ways and compares each system's paired performance before and after, pinpointing the source of degradation. It finds that losing evidence right next to the answer hurts the most, while removing question-related background evidence can be harmless or even helpful.

METAL MEDIA explanatory visual

A diagnostic tool that reveals why knowledge-graph QA systems break when information is missing

  1. 01KGQA and KG-RAG systems answer questions using facts stored in knowledge graphs, but real-world graphs are often sparse and outdated, making robustness to missing evidence essential
  2. 02MissDiag keeps the question, gold answer, and linked entities fixed while removing support-graph edges using four typed operators: random, source-context, relation-level, and answer-adjacent removal, then compares each system's output to its complete-graph output
  3. 03A severity budget scales edge removal proportionally to graph size, producing a typed degradation profile that reports F1 score drops broken down by removal type
  4. 04Tested across trained KGQA models, graph-prompting methods, KG agents, and direct LLM baselines, answer-adjacent evidence loss caused the largest degradation (10.3 to 21.3 F1 points), while removing source-context evidence sometimes even improved performance
  5. 05The gap between answer-adjacent and random-removal damage was largest for multi-answer questions and small support graphs, and this pattern held even when switching to a more lenient semantic answer-matching metric
An explanatory diagram made by METAL MEDIA, not a figure supplied by the paper's authors.

What they did

  1. KGQA and KG-RAG systems answer questions using facts stored in knowledge graphs, but real-world graphs are often sparse and outdated, making robustness to missing evidence essential
  2. MissDiag keeps the question, gold answer, and linked entities fixed while removing support-graph edges using four typed operators: random, source-context, relation-level, and answer-adjacent removal, then compares each system's output to its complete-graph output
  3. A severity budget scales edge removal proportionally to graph size, producing a typed degradation profile that reports F1 score drops broken down by removal type
  4. Tested across trained KGQA models, graph-prompting methods, KG agents, and direct LLM baselines, answer-adjacent evidence loss caused the largest degradation (10.3 to 21.3 F1 points), while removing source-context evidence sometimes even improved performance
  5. The gap between answer-adjacent and random-removal damage was largest for multi-answer questions and small support graphs, and this pattern held even when switching to a more lenient semantic answer-matching metric
Table 1: Main typed degradation profiles across system families at α=0.3. Scores are reported as complete-support macro F1 and paired ΔF1 under each missingness type. Positive ΔF1 indicates degradation; negative values indicate improvement.
CategorySystemCompletePaired degradation 𝚫F1
F1RandomSource-contextRelation-levelAnswer-adjacent
Trained KGQA ModelsReaRev80.84.5-1.22.711.9
NuTrea77.21.9-9.9-2.712.2
NSM46.73.0-24.1-5.212.1
Graph Prompting MethodsMindMap46.210.10.611.212.7
StructGPT52.99.6-0.78.013.8
KG-GPT45.77.04.25.310.3
KG AgentsToG79.57.03.96.011.4
PoG79.96.82.75.811.6
GoG81.712.12.38.919.8
Direct LLM BaselinesQwen2.5-7B-Instruct85.311.13.07.421.3
Qwen2.5-14B-Instruct90.06.71.25.517.0
Llama-3.1-8B-Instruct84.46.1-0.54.015.8
Mistral-7B-Instruct-v0.381.25.41.63.813.3
Table 2: Metric sensitivity of typed degradation profiles for direct LLM baselines at α=0.3. Rand, Src, Rel, and Ans-adj denote random, source-context, relation-level, and answer-adjacent missingness.
SystemMetricPaired degradation 𝚫F1
RandSrcRelAns-adj
Qwen2.5-7BExact F111.13.07.421.3
Semantic F111.63.28.021.4
Qwen2.5-14BExact F16.71.25.517.0
Semantic F16.91.25.416.1
Llama-3.1-8BExact F16.1-0.54.015.8
Semantic F15.1-1.03.915.1
Mistral-7BExact F15.41.63.813.3
Semantic F15.10.93.213.5
Table 3: Structural slices for direct LLM baselines at α=0.3. Rand and Ans-adj report paired ΔF1 under random and answer-adjacent missingness. Gap is the difference between Ans-adj and Rand degradation.
SliceGroupNFullRandAns-adjGap
Answer cardinalitySingle-answer88890.86.814.47.6
Multi-answer16354.510.430.219.9
Support sizeSmall support35380.512.626.714.2
Medium support52787.05.213.38.0
Large support17189.22.97.44.5

Why it matters

Knowing which type of missing knowledge is most damaging lets developers prioritize which gaps in a knowledge graph to fix first when deploying real-world systems. It also shows that a single aggregate robustness score can hide very different failure mechanisms, arguing for a more detailed way of reporting KGQA evaluation results going forward.

Terms in this paper

  • Knowledge Graph · a database of facts stored as connections between entities
  • KGQA · answering natural-language questions using facts from a knowledge graph
  • KG-RAG · generating answers by retrieving supporting facts from a knowledge graph
  • F1 score · a combined measure of how accurate and complete a system's answers are
  • Degradation Profile · a breakdown of performance loss organized by type of missing evidence

Figures we cannot republish

  • Figure 1: Motivation for typed degradation analysis. The same QA instance can show similar aggregate degradation under structurally different missingness conditions. Aggregate score drops alone do not reveal which evidence type was removed, whether answer-local evidence was affected, or whether the effect is systematic.
  • Figure 2: Overview of MissDiag. (1) Input: an instance contains a question, gold answer set, and local support graph. (2) Typed Missingness Operators: typed operators select removable support edges for random, source-context, relation-level, and answer-adjacent missingness. (3) Severity-Controlled Missingness: a shared severity budget produces an incomplete support graph. (4) Paired Evaluation: the same system is evaluated under complete and incomplete support to compute paired degradation. (5) Typed Degradation Profile: degradation values are summarized across missingness type, severity, system, and metric.
  • Figure 3: Severity effects on paired degradation. Curves show paired ΔF1 across missingness types for Qwen2.5-7B-Instruct and Llama-3.1-8B-Instruct as α increases.
See the figures in the original paper →

Original abstract (English)

Knowledge graph question answering (KGQA) and knowledge-graph-based retrieval-augmented generation (KG-RAG) aim to ground answers in explicit graph evidence, but real-world knowledge graphs are often sparse, outdated, and incomplete. Existing robustness evaluations usually report aggregate changes in answer quality after evidence is removed or perturbed, which measures sensitivity to incomplete support but leaves the source of degradation under-specified: the same score change can conflate the type of missing evidence, the response of the evaluated system, and the sensitivity of the answer-matching protocol. To address this gap, we propose \textbf{MissDiag}, a diagnostic evaluation framework for incomplete-knowledge robustness in KGQA and KG-RAG. MissDiag keeps the question and gold answer fixed while applying structurally typed missingness interventions to benchmark-provided support graphs, enabling paired comparisons that decompose robustness changes by evidence type, system response, and evaluation protocol rather than reducing them to a single aggregate score drop. Experiments across multiple system families show that incomplete-knowledge robustness is better understood as a typed degradation phenomenon than as a uniform property: answer-adjacent evidence loss produces the largest observed degradation, source-context removal is often neutral and can be beneficial, and semantic answer matching changes absolute scores while preserving the main typed degradation patterns. By transforming aggregate robustness measurement into typed diagnostic attribution, MissDiag provides a more interpretable basis for comparing, diagnosing, and stress-testing KGQA and KG-RAG systems under incomplete knowledge.

Authors · Hang Wang, Hang Dong, Lu Liu, Chuanru Ren

Read on arXiv

Latest papers

All papers →

Latest from METAL MEDIA