The forward–backward algorithm is an inference algorithm for hidden Markov models which computes the posterior marginals of all hidden state variables given a sequence of observations/emissions
Contents
- Overview
- Forward probabilities
- Backward probabilities
- Example
- Performance
- Pseudocode
- Python example
- References
The term forward–backward algorithm is also used to refer to any algorithm belonging to the general class of algorithms that operate on sequence models in a forward–backward manner. In this sense, the descriptions in the remainder of this article refer but to one specific instance of this class.
Overview
In the first pass, the forward–backward algorithm computes a set of forward probabilities which provide, for all
The last step follows from an application of the Bayes' rule and the conditional independence of
As outlined above, the algorithm involves three steps:
- computing forward probabilities
- computing backward probabilities
- computing smoothed values.
The forward and backward steps may also be called "forward message pass" and "backward message pass" - these terms are due to the message-passing used in general belief propagation approaches. At each single observation in the sequence, probabilities to be used for calculations at the next observation are computed. The smoothing step can be calculated simultaneously during the backward pass. This step allows the algorithm to take into account any past observations of output for computing more accurate results.
The forward–backward algorithm can be used to find the most likely state for any point in time. It cannot, however, be used to find the most likely sequence of states (see Viterbi algorithm).
Forward probabilities
The following description will use matrices of probability values rather than probability distributions, although in general the forward-backward algorithm can be applied to continuous as well as discrete probability models.
We transform the probability distributions related to a given hidden Markov model into matrix notation as follows. The transition probabilities
In a typical Markov model we would multiply a state vector by this matrix to obtain the probabilities for the subsequent state. In a hidden Markov model the state is unknown, and we instead observe events associated with the possible states. An event matrix of the form:
provides the probabilities for observing events given a particular state. In the above example, event 1 will be observed 90% of the time if we are in state 1 while event 2 has a 10% probability of occurring in this state. In contrast, event 1 will only be observed 20% of the time if we are in state 2 and event 2 has an 80% chance of occurring. Given an arbitrary row-vector describing the state of the system (
This can be represented in matrix form by multiplying the state row-vector (
This allows us to calculate the new unnormalized probabilities state vector
We can now make this general procedure specific to our series of observations. Assuming an initial state vector
This process can be carried forward with additional observations using:
This value is the forward unnormalized probability vector. The i'th entry of this vector provides:
Typically, we will normalize the probability vector at each step so that its entries sum to 1. A scaling factor is thus introduced at each step such that:
where
This allows us to interpret the scaled probability vector as:
We thus find that the product of the scaling factors provides us with the total probability for observing the given sequence up to time t and that the scaled probability vector provides us with the probability of being in each state at this time.
Backward probabilities
A similar procedure can be constructed to find backward probabilities. These intend to provide the probabilities:
That is, we now want to assume that we start in a particular state (
Notice that we are now using a column vector while the forward probabilities used row vectors. We can then work backwards using:
While we could normalize this vector as well so that its entries sum to one, this is not usually done. Noting that each entry contains the probability of the future event sequence given a particular initial state, normalizing this vector would be equivalent to applying Bayes' theorem to find the likelihood of each initial state given the future events (assuming uniform priors for the final state vector). However, it is more common to scale this vector using the same
where
This is useful because it allows us to find the total probability of being in each state at a given time, t, by multiplying these values:
To understand this, we note that
The values
Example
This example takes as its basis the umbrella world in Russell & Norvig 2010 Chapter 15 pp. 566 in which we would like to infer the weather given observation of a man either carrying or not carrying an umbrella. We assume two possible states for the weather: state 1 = rain, state 2 = no rain. We assume that the weather has a 70% chance of staying the same each day and a 30% chance of changing. The transition probabilities are then:
We also assume each state generates 2 events: event 1 = umbrella, event 2 = no umbrella. The conditional probabilities for these occurring in each state are given by the probability matrix:
We then observe the following sequence of events: {umbrella, umbrella, no umbrella, umbrella, umbrella} which we will represent in our calculations as:
Note that
In computing the forward probabilities we begin with:
which is our prior state vector indicating that we don't know which state the weather is in before our observations. While a state vector should be given as a row vector, we will use the transpose of the matrix so that the calculations below are easier to read. Our calculations are then written in the form:
instead of:
Notice that the transformation matrix is also transposed, but in our example the transpose is equal to the original matrix. Performing these calculations and normalizing the results provides:
For the backward probabilities we start with:
We are then able to compute (using the observations in reverse order and normalizing with different constants):
Finally, we will compute the smoothed probability values. These result also must be scaled so that its entries sum to 1 because we did not scale the backward probabilities with the
Notice that the value of
The calculations above reveal that the most probable weather state on every day except for the third one was "rain." They tell us more than this, however, as they now provide a way to quantify the probabilities of each state at different times. Perhaps most importantly, our value at
Performance
The brute-force procedure for the solution of this problem is the generation of all possible
An enhancement to the general forward-backward algorithm, called the Island algorithm, trades smaller memory usage for longer running time, taking
In addition, algorithms have been developed to compute
Pseudocode
Backward(guessState, sequenceIndex): if sequenceIndex is past the end of the sequence, return 1 if (guessState, sequenceIndex) has been seen before, return saved result result = 0 for each neighboring state n: result = result + (transition probability from guessState to n given observation element at sequenceIndex) * Backward(n, sequenceIndex+1) save result for (guessState, sequenceIndex) return resultPython example
Given HMM (just like in Viterbi algorithm) represented in the Python programming language:
We can write implementation like this:
The function fwd_bkw
takes the following arguments: x
is the sequence of observations, e.g. ['normal', 'cold', 'dizzy']
; states
is the set of hidden states; a_0
is the start probability; a
are the transition probabilities; and e
are the emission probabilities.
For simplicity of code, we assume that the observation sequence x
is non-empty and that a[i][j]
and e[i][j]
is defined for all states i,j.
In the running example, the forward-backward algorithm is used as follows: