Paper: 2603.20170 Authors: Ruxiao Chen, Xilei Zhao, Thomas J. Cova, Frank A. Drews, Susu Xu Categories: cs.AI

Abstract

Theory of Mind (ToM) reasoning with Large Language Models requires inferring how people’s implicit, evolving beliefs shape what they seek and how they act under uncertainty – especially in high-stakes settings such as disaster response, emergency medicine, and human-in-the-loop autonomy. Prior approaches either prompt LLMs directly or use latent-state models that treat beliefs as static and independent, often producing incoherent mental models over time and weak reasoning in dynamic contexts.

This paper introduces a structured cognitive trajectory model for LLM-based ToM that represents mental state as a dynamic belief graph, jointly inferring latent beliefs, learning their time-varying dependencies, and linking belief evolution to information seeking and decisions.

The Problem: Static and Independent Beliefs

Current Limitations

Existing LLM-based Theory of Mind approaches have critical weaknesses:

  1. Static beliefs: Beliefs are treated as fixed snapshots rather than evolving states
  2. Independence assumption: Beliefs are modeled independently, ignoring how they reinforce or suppress each other
  3. Weak temporal coherence: No mechanism to maintain consistency as beliefs update over time
  4. Post-hoc rationalization: Beliefs are inferred after actions rather than causally driving them

Why This Matters in High-Stakes Scenarios

In disaster evacuation, emergency response, or medical triage:

  • Beliefs evolve rapidly with new observations (wildfire alert → seeing flames → neighbor evacuating)
  • Beliefs interact (risk perception + social cues + resource availability)
  • Actions are delayed until belief thresholds are crossed
  • Coherence is critical for predicting behavior accurately

The Solution: Dynamic Belief Graphs

Core Innovation

The paper introduces three key components:

1. Dynamic Belief Graph Representation

  • Mental states represented as graphs where nodes are beliefs and edges capture dependencies
  • Beliefs evolve over time based on observations and past states
  • Graph structure captures how beliefs reinforce or inhibit each other

2. Semantic-to-Potential Projection

  • Maps LLM semantic embeddings to probabilistic graphical model updates
  • Learns unary potentials (individual belief strengths) and pairwise potentials (belief interactions)
  • Ensures consistency between language-derived evidence and probabilistic reasoning

3. Belief-Conditioned Action Model

  • Actions depend on the full belief graph state, not individual beliefs
  • Action-specific self-attention captures nonlinear belief-action relationships
  • Models threshold-crossing behavior (act when beliefs reach critical levels)

Mathematical Framework

The model uses an energy-based factor graph representation:

p(beliefs | observations) ∝ exp(-E(beliefs))
E(beliefs) = Σ unary_potentials + Σ pairwise_potentials

Training optimizes an ELBO (Evidence Lower Bound) objective that:

  • Maximizes action-trajectory likelihood
  • Enforces belief accumulation dynamics
  • Captures delayed decision-making

Key Contributions

  1. Novel projection mechanism: Converts LLM semantic outputs into consistent probabilistic updates
  2. Energy-based belief interdependencies: Learns how beliefs interact rather than assuming independence
  3. ELBO-based joint learning: Trains belief dynamics and action prediction together
  4. Online belief updating: At test time, updates beliefs from observations alone without retraining

Evaluation: Wildfire Evacuation Datasets

The model was evaluated on real-world disaster evacuation datasets where people decide when to evacuate during wildfires.

Results

  • Significantly improved action prediction compared to baseline LLM prompting and static belief models
  • Recovered interpretable belief trajectories consistent with human reasoning patterns
  • Captured threshold-crossing behavior where beliefs accumulate until triggering evacuation
  • Maintained temporal coherence across long observation sequences

Example Belief Trajectory

t0 (Normal): Low risk perception
t1 (Wildfire Alert): Medium risk, seeking information
t2 (See Flames): High risk, preparing to act
t3 (Neighbor Evacuates): Very high risk → EVACUATE

The model correctly captures:

  • Gradual belief accumulation
  • Social influence (neighbor’s action)
  • Delayed action until threshold crossed

Implications for AI Systems

Augmenting LLMs with ToM

This framework provides a principled module for equipping LLMs with Theory of Mind capabilities:

  • Human-AI collaboration: Better predict human needs and intentions
  • Autonomous systems: Reason about human behavior in shared environments
  • Emergency response: Model evacuation decisions, medical triage, crisis management
  • Explainable AI: Provide interpretable belief trajectories for decision support

Beyond Disaster Response

The approach generalizes to any domain where:

  • Beliefs evolve with observations
  • Multiple beliefs interact
  • Actions depend on accumulated evidence
  • Temporal coherence matters

Examples: financial decision-making, medical diagnosis, negotiation, game playing.

Technical Insights

Why Belief Graphs?

Traditional approaches treat beliefs as independent variables, but human cognition involves:

  • Confirmation bias: Beliefs reinforce each other
  • Cognitive dissonance: Conflicting beliefs create tension
  • Social influence: Others’ beliefs affect our own
  • Threshold effects: Actions trigger when beliefs cross critical levels

Belief graphs naturally capture these phenomena through learned edge potentials.

Why ELBO Training?

The ELBO objective ensures:

  • Belief-action consistency: Inferred beliefs must explain observed actions
  • Temporal smoothness: Beliefs evolve gradually, not erratically
  • Uncertainty quantification: Model maintains distributions over beliefs
  • Generalization: Learns patterns from data rather than relying on frozen LLM priors

Limitations and Future Work

Current Limitations

  • Requires action-trajectory data for training (not just observations)
  • Belief graph structure is predefined (though potentials are learned)
  • Evaluated primarily on evacuation scenarios
  • Computational cost of belief graph inference

Future Directions

  • Structure learning: Automatically discover belief graph topology
  • Multi-agent extension: Model belief interactions between multiple people
  • Active learning: Decide what observations to gather to reduce belief uncertainty
  • Real-time deployment: Optimize inference for online decision support systems

Takeaways

  1. Static beliefs are insufficient for modeling human reasoning in dynamic, high-stakes scenarios
  2. Belief interdependencies matter – beliefs reinforce, suppress, and interact with each other
  3. LLMs need structure – combining semantic understanding with probabilistic reasoning improves coherence
  4. Joint learning works – training belief dynamics and action prediction together ensures consistency
  5. Real-world validation – the approach successfully models actual human evacuation decisions

This work represents an important step toward LLM-based AI systems that can reason about human mental states in realistic, high-stakes environments. By combining the semantic power of LLMs with structured probabilistic modeling, it achieves both interpretability and predictive accuracy.

The framework opens new possibilities for human-AI collaboration in emergency response, autonomous systems, and any domain requiring understanding of how beliefs evolve and drive behavior.

论文: 2603.20170 作者: Ruxiao Chen, Xilei Zhao, Thomas J. Cova, Frank A. Drews, Susu Xu 分类: cs.AI

摘要

使用大型语言模型进行心智理论(ToM)推理需要推断人们隐含的、不断演变的信念如何塑造他们在不确定性下寻求什么以及如何行动——尤其是在灾难响应、急诊医学和人机协同自主等高风险环境中。先前的方法要么直接提示 LLM,要么使用将信念视为静态和独立的潜在状态模型,通常会随着时间的推移产生不连贯的心智模型,并在动态环境中推理能力较弱。

本文介绍了一个用于基于 LLM 的 ToM 的结构化认知轨迹模型,该模型将心智状态表示为动态信念图,联合推断潜在信念,学习它们随时间变化的依赖关系,并将信念演变与信息寻求和决策联系起来。

问题:静态和独立的信念

当前限制

现有的基于 LLM 的心智理论方法存在关键弱点:

  1. 静态信念:信念被视为固定快照而不是演变状态
  2. 独立性假设:信念被独立建模,忽略了它们如何相互加强或抑制
  3. 弱时间连贯性:没有机制在信念更新时保持一致性
  4. 事后合理化:信念在行动之后推断,而不是因果驱动它们

为什么这在高风险场景中很重要

在灾难疏散、应急响应或医疗分诊中:

  • 信念快速演变,随着新观察(野火警报 → 看到火焰 → 邻居疏散)
  • 信念相互作用(风险感知 + 社会线索 + 资源可用性)
  • 行动延迟,直到信念阈值被跨越
  • 连贯性至关重要,以准确预测行为

解决方案:动态信念图

核心创新

论文引入了三个关键组件:

1. 动态信念图表示

  • 心智状态表示为图,其中节点是信念,边捕获依赖关系
  • 信念根据观察和过去状态随时间演变
  • 图结构捕获信念如何相互加强或抑制

2. 语义到势能投影

  • 将 LLM 语义嵌入映射到概率图模型更新
  • 学习一元势能(个体信念强度)和成对势能(信念交互)
  • 确保语言派生证据与概率推理之间的一致性

3. 信念条件行动模型

  • 行动依赖于完整的信念图状态,而不是单个信念
  • 行动特定的自注意力捕获非线性信念-行动关系
  • 模拟阈值跨越行为(当信念达到临界水平时采取行动)

数学框架

该模型使用基于能量的因子图表示:

p(信念 | 观察) ∝ exp(-E(信念))
E(信念) = Σ 一元势能 + Σ 成对势能

训练优化**ELBO(证据下界)**目标,该目标:

  • 最大化行动轨迹似然
  • 强制信念累积动态
  • 捕获延迟决策

主要贡献

  1. 新颖的投影机制:将 LLM 语义输出转换为一致的概率更新
  2. 基于能量的信念相互依赖:学习信念如何交互而不是假设独立性
  3. 基于 ELBO 的联合学习:一起训练信念动态和行动预测
  4. 在线信念更新:在测试时,仅从观察更新信念,无需重新训练

评估:野火疏散数据集

该模型在真实世界灾难疏散数据集上进行了评估,人们在野火期间决定何时疏散。

结果

  • 与基线 LLM 提示和静态信念模型相比,显著改善了行动预测
  • 恢复了可解释的信念轨迹,与人类推理模式一致
  • 捕获了阈值跨越行为,信念累积直到触发疏散
  • 在长观察序列中保持时间连贯性

示例信念轨迹

t0(正常):低风险感知
t1(野火警报):中等风险,寻求信息
t2(看到火焰):高风险,准备行动
t3(邻居疏散):非常高风险 → 疏散

该模型正确捕获:

  • 逐渐的信念累积
  • 社会影响(邻居的行动)
  • 延迟行动直到跨越阈值

对 AI 系统的影响

用 ToM 增强 LLM

该框架为 LLM 配备心智理论能力提供了原则性模块

  • 人机协作:更好地预测人类需求和意图
  • 自主系统:在共享环境中推理人类行为
  • 应急响应:模拟疏散决策、医疗分诊、危机管理
  • 可解释 AI:为决策支持提供可解释的信念轨迹

超越灾难响应

该方法推广到任何领域,其中:

  • 信念随观察演变
  • 多个信念相互作用
  • 行动依赖于累积证据
  • 时间连贯性很重要

示例:金融决策、医疗诊断、谈判、游戏。

技术见解

为什么是信念图?

传统方法将信念视为独立变量,但人类认知涉及:

  • 确认偏差:信念相互加强
  • 认知失调:冲突的信念产生紧张
  • 社会影响:他人的信念影响我们自己的
  • 阈值效应:当信念跨越临界水平时触发行动

信念图通过学习的边势能自然捕获这些现象。

为什么是 ELBO 训练?

ELBO 目标确保:

  • 信念-行动一致性:推断的信念必须解释观察到的行动
  • 时间平滑性:信念逐渐演变,而不是不稳定
  • 不确定性量化:模型维护信念的分布
  • 泛化:从数据中学习模式,而不是依赖冻结的 LLM 先验

限制和未来工作

当前限制

  • 需要行动轨迹数据进行训练(不仅仅是观察)
  • 信念图结构是预定义的(尽管势能是学习的)
  • 主要在疏散场景中评估
  • 信念图推理的计算成本

未来方向

  • 结构学习:自动发现信念图拓扑
  • 多智能体扩展:模拟多人之间的信念交互
  • 主动学习:决定收集哪些观察以减少信念不确定性
  • 实时部署:优化在线决策支持系统的推理

要点

  1. 静态信念不足以在动态、高风险场景中建模人类推理
  2. 信念相互依赖很重要——信念相互加强、抑制和交互
  3. LLM 需要结构——将语义理解与概率推理相结合可提高连贯性
  4. 联合学习有效——一起训练信念动态和行动预测确保一致性
  5. 真实世界验证——该方法成功模拟了实际的人类疏散决策

这项工作代表了朝着能够在现实、高风险环境中推理人类心智状态的基于 LLM 的 AI 系统迈出的重要一步。通过将 LLM 的语义能力与结构化概率建模相结合,它实现了可解释性和预测准确性。

该框架为应急响应、自主系统以及任何需要理解信念如何演变和驱动行为的领域中的人机协作开辟了新的可能性。