Partially observable Markov decision process

From Infogalactic: the planetary knowledge core
Jump to: navigation, search

A partially observable Markov decision process (POMDP) is a generalization of a Markov decision process (MDP). A POMDP models an agent decision process in which it is assumed that the system dynamics are determined by an MDP, but the agent cannot directly observe the underlying state. Instead, it must maintain a probability distribution over the set of possible states, based on a set of observations and observation probabilities, and the underlying MDP.

The POMDP framework is general enough to model a variety of real-world sequential decision processes. Applications include robot navigation problems, machine maintenance, and planning under uncertainty in general. The framework originated in the operations research community, and was later taken over by the artificial intelligence and automated planning communities.

An exact solution to a POMDP yields the optimal action for each possible belief over the world states. The optimal action maximizes (or minimizes) the expected reward (or cost) of the agent over a possibly infinite horizon. The sequence of optimal actions is known as the optimal policy of the agent for interacting with its environment.

Definition

Formal definition

A discrete-time POMDP models the relationship between an agent and its environment. Formally, a POMDP is a 7-tuple (S,A,T,R,\Omega,O,\gamma), where

  • S is a set of states,
  • A is a set of actions,
  • T is a set of conditional transition probabilities between states,
  • R: S \times A \to \mathbb{R} is the reward function.
  • \Omega is a set of observations,
  • O is a set of conditional observation probabilities, and
  • \gamma \in [0, 1] is the discount factor.

At each time period, the environment is in some state s \in S. The agent takes an action a \in A, which causes the environment to transition to state s' with probability T(s'\mid s,a). At the same time, the agent receives an observation o \in \Omega which depends on the new state of the environment with probability O(o \mid s',a). Finally, the agent receives a reward equal to R(s, a). Then the process repeats. The goal is for the agent to choose actions at each time step that maximize its expected future discounted reward: E \left[ \sum_{t=0}^\infty \gamma^t r_t \right]. The discount factor \gamma determines how much immediate rewards are favored over more distant rewards. When \gamma=0 the agent only cares about which action will yield the largest expected immediate reward; when \gamma=1 the agent cares about maximizing the expected sum of future rewards.

Discussion

Because the agent does not directly observe the environment's state, the agent must make decisions under uncertainty of the true environment state. However, by interacting with the environment and receiving observations, the agent may update its belief in the true state by updating the probability distribution of the current state. A consequence of this property is that the optimal behavior may often include information gathering actions that are taken purely because they improve the agent's estimate of the current state, thereby allowing it to make better decisions in the future.

It is instructive to compare the above definition with the definition of a Markov decision process. An MDP does not include the observation set, because the agent always knows with certainty the environment's current state. Alternatively, an MDP can be reformulated as a POMDP by setting the observation set to be equal to the set of states and defining the observation conditional probabilities to deterministically select the observation that corresponds to the true state.

Belief update

An agent needs to update its belief upon taking the action a and observing o. Since the state is Markovian, maintaining a belief over the states solely requires knowledge of the previous belief state, the action taken, and the current observation. The operation is denoted b' = \tau(b,a,o). Below we describe how this belief update is computed.

After reaching s', the agent observes o \in \Omega with probability O(o\mid s',a). Let b be a probability distribution over the state space S. b(s) denotes the probability that the environment is in state s. Given b(s), then after taking action a and observing o,


b'(s') = \eta O(o\mid s',a) \sum_{s\in S} T(s'\mid s,a)b(s)

where \eta=1/\Pr(o\mid b,a) is a normalizing constant with \Pr(o\mid b,a) = \sum_{s'\in S}O(o\mid s',a)\sum_{s\in S}T(s'\mid s,a)b(s).

Belief MDP

A Markovian belief state allows a POMDP to be formulated as a Markov decision process where every belief is a state. The resulting belief MDP will thus be defined on a continuous state space, since there are infinite beliefs for any given POMDP.[1] In other words, there are technically infinite belief states (in B) because there are an infinite number of mixtures of (S) the originating states.

Formally, the belief MDP is defined as a tuple (B,A,\tau,r,\gamma) where

  • B is the set of belief states over the POMDP states,
  • A is the same finite set of action as for the original POMDP,
  • \tau is the belief state transition function,
  • r:B \times A \to \mathbb{R} is the reward function on belief states,
  • \gamma is the discount factor equal to the \gamma in the original POMDP.

Of these, \tau and r need to be derived from the original POMDP. \tau is

\tau(b,a,b') = \sum_{o\in \Omega} \Pr(b'|b,a,o) \Pr(o | a, b),

where \Pr(o | a,b) is the value derived in the previous section and

Pr(b'|b,a,o) = \begin{cases}
1 &\text{if the belief update with arguments } b,a,o \text{ returns } b'  \\
0 &\text{otherwise }  \end{cases}.

The belief MDP reward function (r) is the expected reward from the POMDP reward function over the belief state distribution:

r(b,a) = \sum_{s\in S} b(s) R(s,a).

The belief MDP is not partially observable anymore, since at any given time the agent knows its belief, and by extension the state of the belief MDP.

Also, unlike the "originating" MDP, where each action is available from only one state; in the corresponding Belief MDP, all belief states allow all actions, since you (almost) always have some probability of believing you are in any (originating) state.

Policy and Value Function

\pi specifies an action a=\pi(b) for any belief b. Here it is assumed the objective is to maximize the expected total discounted reward over an infinite horizon. When R defines a cost, the objective becomes the minimization of the expected cost.

The expected reward for policy \pi starting from belief b_0 is defined as


V^\pi(b_0) = \sum_{t=0}^\infty  \gamma^t r(b_t, a_t) = \sum_{t=0}^\infty \gamma^t E\Bigl[ R(s_t,a_t) \mid b_0, \pi \Bigr]

where \gamma<1 is the discount factor. The optimal policy \pi^* is obtained by optimizing the long-term reward.


\pi^* = \underset{\pi}{\mbox{argmax}}\ V^\pi(b_0)

where b_0 is the initial belief.

The optimal policy, denoted by \pi^*, yields the highest expected reward value for each belief state, compactly represented by the optimal value function V^*. This value function is solution to the Bellman optimality equation:


V^*(b) = \max_{a\in A}\Bigl[ r(b,a) + \gamma\sum_{o\in \Omega} O(o\mid b,a) V^*(\tau(b,a,o)) \Bigr]

For finite-horizon POMDPs, the optimal value function is piecewise-linear and convex.[2] It can be represented as a finite set of vectors. In the infinite-horizon formulation, a finite vector set can approximate V^* arbitrarily closely, whose shape remains convex. Value iteration applies dynamic programming update to gradually improve on the value until convergence to an \epsilon-optimal value function, and preserves its piecewise linearity and convexity.[3] By improving the value, the policy is implicitly improved. Another dynamic programming technique called policy iteration explicitly represents and improves the policy instead.[4][5]

Approximate POMDP solutions

In practice, POMDPs are often computationally intractable to solve exactly, so computer scientists have developed methods that approximate solutions for POMDPs.[6]

Grid-based algorithms [7] comprise one approximate solution technique. In this approach, the value function is computed for a set of points in the belief space, and interpolation is used to determine the optimal action to take for other belief states that are encountered which are not in the set of grid points. More recent work makes use of sampling techniques, generalization techniques and exploitation of problem structure, and has extended POMDP solving into large domains with millions of states [8][9] For example, point-based methods sample random reachable belief points to constrain the planning to relevant areas in the belief space.[10] Dimensionality reduction using PCA has also been explored.[11]

POMDP uses

POMDPs model many kinds of real-world problems. Notable works include the use of a POMDP in management of patients with ischemic heart disease,[12] assistive technology for persons with dementia,[8][9] the conservation of the critically endangered and difficult to detect Sumatran tigers [13] and aircraft collision avoidance.[14]

References

  1. Lua error in package.lua at line 80: module 'strict' not found.
  2. Lua error in package.lua at line 80: module 'strict' not found.
  3. Lua error in package.lua at line 80: module 'strict' not found.
  4. Lua error in package.lua at line 80: module 'strict' not found.
  5. Lua error in package.lua at line 80: module 'strict' not found.
  6. Lua error in package.lua at line 80: module 'strict' not found.
  7. Lua error in package.lua at line 80: module 'strict' not found.
  8. 8.0 8.1 Lua error in package.lua at line 80: module 'strict' not found.
  9. 9.0 9.1 Lua error in package.lua at line 80: module 'strict' not found.
  10. Lua error in package.lua at line 80: module 'strict' not found.
  11. Lua error in package.lua at line 80: module 'strict' not found.
  12. Lua error in package.lua at line 80: module 'strict' not found.
  13. Lua error in package.lua at line 80: module 'strict' not found.
  14. Lua error in package.lua at line 80: module 'strict' not found.

External links

  • Tony Cassandra's POMDP pages with a tutorial, examples of problems modeled as POMDPs, and software for solving them.
  • zmdp, a POMDP solver by Trey Smith
  • APPL, a fast point-based POMDP solver
  • SPUDD, a factored structured (PO)MDP solver that uses algebraic decision diagrams (ADDs).
  • pyPOMDP, a (PO)MDP toolbox (simulator, solver, learner, file reader) for Python by Oliver Stollmann and Bastian Migge
  • Finite-state Controllers using Branch-and-Bound An Exact POMDP Solver for Policies of a Bounded Size