Stanford AA228 Decision Making Under Uncertainty | Autumn 2025 | Offline Belief State Planning
TL;DR
This lecture covers approximate offline methods for solving POMDPs when exact solutions are computationally impossible, focusing on QMDP—a technique that solves the problem as a fully observable MDP and executes policies by weighting pre-computed Q-values with current belief states represented as alpha vectors.
🧮 The Intractability of Exact POMDP Solutions 2 insights
Exact value iteration explodes exponentially
For a small POMDP with just two actions and observations, exact methods must track up to 10^338 conditional plans for a 10-step horizon, making optimal solutions impossible for moderate problem sizes.
Belief space MDPs face continuous state spaces
Formulating POMDPs as belief state MDPs results in continuous state spaces that are computationally prohibitive to solve exactly using standard techniques.
🎯 The QMDP Approximation Method 3 insights
Solve as MDP, execute with belief weighting
QMDP ignores partial observability during planning to compute standard MDP Q-values, then selects actions by taking the belief-weighted average of these values during execution.
Deployed in ACAS X collision avoidance
This computationally efficient approach powers the ACAS X aircraft collision avoidance system, where it prevents mid-air collisions by interpolating pre-computed state values based on current belief distributions.
One alpha vector per action representation
QMDP can be viewed as maintaining a single alpha vector for each action, where each vector entry stores the expected utility for a specific state under that action.
📐 Alpha Vector Fundamentals 2 insights
Alpha vectors store state-conditional utilities
Each alpha vector contains one entry per state representing the expected future utility if the agent were actually in that particular state and followed the associated policy.
Value function as belief-weighted sum
The estimated value of a belief state is computed by taking the dot product between the belief probability distribution and the relevant alpha vector entries.
Bottom Line
For real-world POMDPs where exact solutions are intractable, compute QMDP policies offline by solving the fully observable MDP and representing each action's values as an alpha vector, then execute by selecting actions that maximize the belief-weighted dot product.
More from Stanford Online
View all
Stanford CS221 | Autumn 2025 | Lecture 20: Fireside Chat, Conclusion
Percy Liang reflects on AI's transformation from academic curiosity to global infrastructure, debunking sci-fi misconceptions about capabilities while arguing that academia's role in long-term research and critical evaluation remains essential as the job market shifts away from traditional entry-level software engineering.
Stanford CS221 | Autumn 2025 | Lecture 19: AI Supply Chains
This lecture examines AI's economic impact through the lens of supply chains and organizational strategy, demonstrating why understanding compute monopolies, labor market shifts, and corporate decision-making is as critical as tracking algorithmic capabilities.
Stanford CS221 | Autumn 2025 | Lecture 18: AI & Society
This lecture argues that AI developers bear unique ethical responsibility for societal outcomes, framing AI as a dual-use technology that requires active steering toward beneficial applications while preventing misuse and accidental harms through rigorous auditing and an ecosystem-aware approach.
Stanford CS221 | Autumn 2025 | Lecture 17: Language Models
This lecture introduces modern language models as industrial-scale systems requiring millions of dollars and trillions of tokens to train, explaining their fundamental operation as auto-regressive next-token predictors that encode language structure through massive statistical modeling.