[NeurIPS 2025] INFOGATHERER: Navigating High-Stakes Uncertainty via Evidential Networks

InfoGatherer: Principled Information Seeking via Evidence Retrieval and Strategic Questioning

Summary
Problem
Method
Results
Takeaways
Abstract

INFOGATHERER is a principled information-seeking framework that combines Evidence Retrieval with a formal Evidential Network to guide LLM-based strategic questioning. It achieves state-of-the-art results on MedQA (69.3% success) and BarExamQA (66.5% success) using Dempster-Shafer theory to model uncertainty and ignorance.

TL;DR

In high-stakes fields like medicine and law, an LLM's "I don't know" is just as important as its final answer. INFOGATHERER is a new framework that treats information-seeking as a formal mathematical problem. By mapping retrieved documents and user responses onto a Dempster-Shafer Evidential Network, it moves beyond "vibes-based" confidence, achieving SOTA accuracy on MedQA and BarExamQA with significantly shorter dialogues.

The Motivation: The "Overconfidence" Trap

When a patient says, "I have a sore throat," a standard LLM (or even a RAG system) might immediately hallucinate a diagnosis or ask a random question. The core issue is premature collapse: most models force a probability distribution over hypotheses even when the evidence is missing or ambiguous.

Prior works like MediQ or Uncertainty of Thoughts (UoT) tried to fix this through prompting or self-consistency. However, they lack a principled way to distinguish between Ambiguity (evidence supports multiple things) and Ignorance (we just don't have the data yet).

Methodology: Reasoning with Evidential Networks

INFOGATHERER replaces simple point-probabilities with Basic Belief Assignments (BBAs).

1. Network Construction

The system first builds a Directed Acyclic Graph (DAG) grounded in authoritative documents. If we're diagnosing a disease, the root is the "Hypothesis," and the leaves are "Observable Features" (symptoms).

INFOGATHERER Overview

2. Principled Belief Elicitation

Instead of asking an LLM "How likely is X?", INFOGATHERER prompts the LLM to extract BBAs from snippets. A snippet might say "Fever may indicate Flu or COVID." Instead of splitting 50/50, the BBA assigns mass to the set {Flu, COVID}, explicitly preserving the ambiguity.

3. Strategic Questioning via Deng Entropy

To decide what to ask next, INFOGATHERER uses Deng Entropy. This metric decomposes uncertainty into two parts:

  • Nonspecificity: Belief is spread over large sets (Ambiguity).
  • Discord: Belief is split between competing specific hypotheses (Conflict).

The policy is elegant: first, ask questions to reduce Nonspecificity (narrow the field), then ask questions to resolve Discord (pick the winner).

Methodology Pipeline

Experiments: Higher Accuracy, Fewer Questions

The authors tested INFOGATHERER against the best interactive baselines on MedQA (Medical) and BarExamQA (Legal).

DomainMethodSuccess Rate (%)Avg. Turns
LegalUoT (Basline)32.8%4.9
LegalINFOGATHERER66.5%5.9
MedicalMediQ (Baseline)59.1%10.7
MedicalINFOGATHERER69.3%7.4

Key Insight: In the Legal domain, the success rate nearly doubled compared to Uncertainty of Thoughts. This is because legal reasoning requires resolving specific factual contradictions that point-probability models often smooth over.

Confidence Trajectory Comparison Figure: INFOGATHERER (solid blue) shows a more calibrated confidence increase, avoiding the noisy fluctuations of Bayesian and heuristic methods.

Critical Analysis & Conclusion

Why it Works

The "secret sauce" is Yager’s Rule of Combination. Unlike standard Bayesian updates which can be "broken" by one piece of contradictory evidence, Yager’s rule shunts conflict into the Ignorance mass. This prevents the model from spiraling when a user gives a slightly inconsistent answer.

Limitations

  • Fixed Hypothesis Space: Currently, the model needs a predefined list of outcomes (like multiple-choice questions).
  • Latency: Constructing a full evidential network and running leaf-to-root message passing is computationally heavier than simple prompting.

The Bottom Line

INFOGATHERER proves that for AI to be useful in professional fields, it needs more than just "more parameters"—it needs a formal logic for seeking truth. By borrowing from 1960s-era Evidence Theory and fusing it with modern LLMs, we get agents that are not just smarter, but significantly more "honest" about what they don't know.

Find Similar Papers

Try Our Examples

  • Examine recent papers from 2024-2025 that integrate Dempster-Shafer theory or Subjective Logic into Large Language Model reasoning chains for uncertainty quantification.
  • Which study first introduced the "Pignistic Transformation" in the context of belief functions, and how does INFOGATHERER's implementation of pignistic probability for stopping criteria differ from classical decision-theoretic agents?
  • Investigate how INFOGATHERER's evidential network construction can be scaled to open-domain RAG systems where the hypothesis space is not a fixed multiple-choice set but a dynamic generative space.
Contents
[NeurIPS 2025] INFOGATHERER: Navigating High-Stakes Uncertainty via Evidential Networks
1. TL;DR
2. The Motivation: The "Overconfidence" Trap
3. Methodology: Reasoning with Evidential Networks
3.1. 1. Network Construction
3.2. 2. Principled Belief Elicitation
3.3. 3. Strategic Questioning via Deng Entropy
4. Experiments: Higher Accuracy, Fewer Questions
5. Critical Analysis & Conclusion
5.1. Why it Works
5.2. Limitations
5.3. The Bottom Line