ARIA: A Causal-Aware Framework for Rescuing LLM Reasoning in Materials Discovery

Gating knowledge on causal completeness to prevent contextual tunneling in LLMs

Yi Cao, Liaoyaqi Wang, Jieneng Chen, Benjamin Van Durme, Alan Yuille, Paulette Clancy

KDD 2026 · AI for Sciences Track

Naively augmenting LLMs with knowledge graph evidence can degrade performance—over-anchoring on correct-but-incomplete evidence. ARIA fixes this with a three-tier cascade that gates evidence on causal completeness.

What you'll explore in this article
  • Why adding knowledge can hurt, and the failure mode we call contextual tunneling
  • The Processing–Structure–Property (PSP) hierarchy and what makes a causal chain complete
  • How ARIA's three-tier cascade decides when to use retrieved evidence
  • An auditable causal trace you can inspect end-to-end

The Problem: Why Adding Knowledge Can Hurt

Naively augmenting LLMs with knowledge graph evidence—retrieving facts and concatenating them into the prompt—degrades performance. Not because the evidence is wrong, but because it's incomplete.

Contextual Tunneling

LLMs over-anchor on correct-but-incomplete evidence fragments, suppressing their broader parametric reasoning. The retrieved evidence is factually correct—the problem is mechanistic incompleteness of the causal chain.

Demo 1: Same query, two systems. The naive KG+LLM pipeline over-anchors on partial evidence (red) and produces overconfident but mechanistically incomplete answers.
See the worked example & quantitative evidence

A scientist asks: "What are the electrical properties of CVD-grown MoS₂?" A naive system retrieves every MoS₂ edge—including Processing → Property shortcuts—and anchors on these partial facts, bypassing the mechanistic chain through crystallinity.

On 149 expert-validated 2D-materials tasks, naive KG integration decreases performance by up to 12.7% on inverse design, despite the retrieved evidence being factually correct:

$$ \text{Score}_{\text{Naive KG}} = 0.301 \quad < \quad \text{Score}_{\text{Baseline}} = 0.345 $$

The Processing–Structure–Property Hierarchy

The PSP causal hierarchy underlies ARIA's reasoning: processing conditions determine structure, which determines properties. No causal claim is complete unless it traces a full P→S→P chain.

Demo 2: The PSP hierarchy. Click any node to see its connections. Complete P→S→P chains are blue; P→P shortcuts that cause contextual tunneling are dashed red.
Definition 1: PSP-Complete Path

A query is PSP-complete when the knowledge graph contains a full path from processing conditions through structure to property—no shortcuts. This structural completeness check, not a retrieval score, is the gate that decides whether to activate external knowledge.

Formal criteria

Given a causal knowledge graph $G = (V, E)$ with node partition $V = V_P \cup V_S \cup V_{Prop}$, a query $q = (\text{method}, \text{host}, \text{dopant})$ is PSP-complete iff there exists a path $p = (v_P, v_S, v_{Prop})$ satisfying:

  1. $v_P$ matches the synthesis method and conditions
  2. $v_S$ matches the host and dopant
  3. $v_{Prop}$ is reachable from $v_S$
  4. Both edges $(v_P, v_S)$ and $(v_S, v_{Prop})$ exist in $E$
  5. The minimum edge confidence along $p$ is at least $\theta_1$

ARIA's Three-Tier Adaptive Cascade

ARIA conditions knowledge integration on mechanistic completeness. Before using retrieved evidence, it checks whether that evidence forms a complete causal chain.

Tier 1

Direct Causal Path

Complete PSP path exists. Use verified mechanisms.

Confidence: HIGH
Tier 2

Analogical Transfer

No complete path; transfer from analogs with physical checks.

Confidence: MEDIUM
Tier 3

Parametric Fallback

Insufficient evidence. Disable retrieval, flag uncertainty.

Confidence: LOW
Demo 3: Type a materials query and watch ARIA route it. PSP completeness determines the tier.
Key Insight

ARIA's gating happens at the reasoning stage, not the retrieval stage. Existing RAG systems (Self-RAG, GIVE, GNN-RAG) decide what to retrieve. ARIA decides whether to use what was retrieved.

Knowledge Graph Explorer

ARIA's Causal Knowledge Graph encodes verified Processing–Structure–Property relationships extracted from literature. The demo below shows 28 curated MoS₂/WS₂ relationships with complete P→S→P chains, P→P shortcuts, and analogical transfer edges.

Demo 4: Hover nodes for connections. Click to highlight PSP paths. Blue = Processing · Gold = Structure · Green = Property. Dashed red = P→P shortcuts.
28Relationships
3PSP Layers
13Complete P→S→P Chains
5P→P Shortcuts

The graph reveals a 3.4× asymmetry: 35.3% of forward queries (processing → properties) find complete paths, but only 10.5% of inverse queries (properties → processing) do. That asymmetry is why Tier 1 fires 62.5% of the time on forward prediction but never on inverse design.

Which KG is this demo using? + format spec

This figure loads assets/data/aria_2d_kg_demo.json — a curated 28-relationship, 34-node subset chosen to stay responsive in a browser. The full paper KG (421 relationships, 777+ nodes) is too large to ship on a static site.

Forks can point the explorer at their own KG JSON. Expected schema: { nodes: [...], edges: [...] } where each edge carries source, target, relation, psp_type (Processing_to_Structure, Structure_to_Property, or Processing_to_Property), material, confidence, evidence_text, and relationship_id. See the GitHub repository for the full pipeline.

Tier-by-Tier Deep Dives

Tier 1

Direct Causal Path Reasoning

HIGH confidence

When a complete PSP chain exists, ARIA traces the full path through structural mediators and uses only verified causal mechanisms.

See the worked example: CVD-grown MoS₂ conductivity

Example: CVD-grown MoS₂ conductivity

Processing
CVD temperature 750°C
confidence: 0.90
enables →
Structure
crystallinity
confidence: 0.90
produces →
Property
mobility >40 cm²/Vs
confidence: 0.92
Mechanism: CVD growth at 750°C on SiO₂ substrate yields large-grain MoS₂ with improved crystallinity → improved crystallinity reduces charged impurity scattering → carrier mobility exceeds 40 cm²/Vs.
✓ Result

ARIA achieves 0.90 confidence with full source citations, compared to Naive KG's overconfident 0.76 (which lacks mechanistic justification).

Tier 2

Analogical Mechanism Transfer

MEDIUM confidence

When no complete PSP path exists, ARIA finds the most semantically similar material and transfers its mechanisms—only after validating physical constraints.

See the worked example: MoSe₂ bandgap prediction via MoS₂ analogy

Example: MoSe₂ bandgap prediction via MoS₂ analogy

Structural class preservation: MoSe₂ shares 2H hexagonal phase with MoS₂
Elemental substitution rule: S→Se substitution reduces bandgap by ~15%
Thermal stability window: CVD temperature range overlaps for both materials
Source (MoS₂)
Direct bandgap: ~1.8 eV
S→Se: −15%
Target (MoSe₂)
Estimated bandgap: ~1.5 eV
Analogy-based prediction. Mechanisms transferred from MoS₂ with S→Se substitution correction.
✓ Result

ARIA achieves 1.3% error on the MoSe₂ bandgap prediction via analogical transfer, compared to Naive KG's 12.9% error.

Tier 3

Parametric Fallback

LOW confidence

When neither complete paths nor analogies are available, ARIA disables retrieval, relies on the LLM's parametric knowledge, and explicitly flags the output as speculative.

See the worked example: ITO alternative for transparent conductors

Example: ITO alternative for transparent conductors

Uncertainty Flag: Insufficient causal evidence in the knowledge graph for this inverse design query. Output is based solely on parametric knowledge and should be treated as speculative.
ARIA Confidence
0.52
Naive KG Confidence
0.76
Contrast

Naive KG+LLM assigns 0.76 confidence to the same query by concatenating partial ITO edges—despite no complete causal chain existing. ARIA honestly reports 0.52 confidence, a 32% reduction that signals real epistemic uncertainty.

Results

Evaluated on 149 expert-validated 2D-materials synthesis tasks spanning forward prediction and inverse design.

Demo 5: Performance across methods. The chart is interactive — explore the data directly.

Tier activation reveals a structural asymmetry: Tier 1 fires 62.5% of the time on forward prediction but never on inverse design—the CKG has only 10.5% reverse reachability.

Main Results

149 expert-validated 2D-materials queries · 5 method families · forward prediction & inverse design

Robustness & Ablation

How does ARIA degrade when the KG loses edges? Drag the slider to simulate progressive edge deletion.

Demo 6: ARIA holds up through Tier 2 absorption; Naive KG collapses.

Causal Trace Audit

Every ARIA result ships with a step-by-step auditable causal trace—a chain of trust from evidence to conclusion that scientists can verify at every step.

Query:
"What is the carrier mobility of CVD-grown MoS₂ at 750°C?"
1

Entity Extraction

Extracted entities: CVD temperature 750°C, MoS₂, carrier mobility

2

Knowledge Graph Matching

Matched nodes: CVD temperature 750°C, crystallinity, carrier mobility

3

PSP Completeness Check

COMPLETE — P→S→P chain found

Path: CVD 750°C → crystallinity → carrier mobility

Min edge confidence: $\min(0.90, 0.92) = 0.90 \geq \theta_1$ ✓

T1

Tier 1: Direct Causal Path Reasoning

Using verified causal mechanisms only.

Show cited evidence
Evidence 1: "CVD growth at 750°C on SiO₂ substrate yields large-grain MoS₂ with improved crystallinity" DOI: 10.1038/nnano.2014.1
Evidence 2: "Improved crystallinity reduces charged impurity scattering, leading to carrier mobility exceeding 40 cm²/Vs" DOI: 10.1038/nnano.2014.1

Result

CVD-grown MoS₂ at 750°C achieves carrier mobility exceeding 40 cm²/Vs in monolayer form, mediated by improved crystallinity that reduces charged impurity scattering.

Confidence: 0.90 Tier 1 2 sources cited

Conclusion

Knowledge can constrain reasoning unless gated by causal completeness. Not that knowledge graphs are unhelpful—they are essential—but when and how evidence is integrated matters as much as what is retrieved.

Takeaway

Retrieve broadly, reason carefully. Activate evidence only when it forms a complete causal chain. Analogize with physical constraints when it doesn't. Honestly flag uncertainty when evidence is absent.

Beyond materials science

Contextual tunneling is not unique to materials. Any domain where causal completeness matters—medicine, climate science, engineering—can benefit from evidence-gating at the reasoning stage, not the retrieval stage.

Paper Figures

Reproduced from the KDD 2026 paper as a quick reference. Click a figure to enlarge, or click a numbered hotspot to jump back to the section that uses it.

KDD Fig 1 - ARIA's three-tier causal cascade. Evidence is activated only when causally complete (Tier 1), transferred from analogs with physical checks (Tier 2), or explicitly flagged as ungrounded (Tier 3).
KDD Fig 1. ARIA's three-tier causal cascade. Evidence is activated only when causally complete (Tier 1), transferred from analogs with physical checks (Tier 2), or explicitly flagged as ungrounded (Tier 3). View PDF (Fig. 1)
KDD Fig 3 - Knowledge graph construction pipeline: from literature to PSP relationships.
KDD Fig 3. Causal Knowledge Graph construction pipeline - from literature to PSP relationships. Open the interactive explorer to inspect 28 curated MoS2/WS2 relationships.
KDD Fig 4 - Tier-specific performance. ARIA's selective evidence activation prevents contextual tunneling while naive KG amplifies it.
KDD Fig 4. Tier-specific performance. ARIA's selective evidence activation prevents contextual tunneling while naive KG amplifies it. Jump to the results for the per-method breakdown with confidence intervals and 99.2% LLM-judge preference.