Hidden Markov Models

This tutorial illustrates training Bayesian hidden Markov models (HMMs) using Turing. The main goals are learning the transition matrix, emission parameter, and hidden states. For a more rigorous academic overview of hidden Markov models, see An Introduction to Hidden Markov Models and Bayesian Networks (Ghahramani, 2001).

In this tutorial, we assume there are \(k\) discrete hidden states; the observations are continuous and normally distributed, and centred around the hidden states. This assumption reduces the number of parameters to be estimated in the emission matrix.

Let’s load the libraries we’ll need, and set a random seed for reproducibility.

# Load libraries.
using Turing, StatsPlots, Random, Bijectors

# Set a random seed
Random.seed!(12345678);

Simple State Detection

In this example, we’ll use something where the states and emission parameters are straightforward.

# Define the emission parameter.
y = [fill(1.0, 6)..., fill(2.0, 6)..., fill(3.0, 7)...,
  fill(2.0, 4)..., fill(1.0, 7)...]
N = length(y);
K = 3;

# Plot the data we just made.
plot(y; xlim=(0, 30), ylim=(-1, 5), size=(500, 250), legend = false)
scatter!(y, color = :blue; xlim=(0, 30), ylim=(-1, 5), size=(500, 250), legend = false)

We can see that we have three states, one for each height of the plot (1, 2, 3). This height is also our emission parameter, so state one produces a value of one, state two produces a value of two, and so on.

Ultimately, we would like to understand three major parameters:

  1. The transition matrix. This is a matrix that assigns a probability of switching from one state to any other state, including the state that we are already in.
  2. The emission parameters, which describes a typical value emitted by some state. In the plot above, the emission parameter for state one is simply one.
  3. The state sequence is our understanding of what state we were actually in when we observed some data. This is very important in more sophisticated HMMs, where the emission value does not equal our state.

With this in mind, let’s set up our model. We are going to use some of our knowledge as modelers to provide additional information about our system. This takes the form of the prior on our emission parameter.

\[ m_i \sim \mathrm{Normal}(i, 0.5) \quad \text{where} \quad m = \{1,2,3\} \]

Simply put, this says that we expect state one to emit values in a Normally distributed manner, where the mean of each state’s emissions is that state’s value. The variance of 0.5 helps the model converge more quickly — consider the case where we have a variance of 1 or 2. In this case, the likelihood of observing a 2 when we are in state 1 is actually quite high, as it is within a standard deviation of the true emission value. Applying the prior that we are likely to be tightly centred around the mean prevents our model from being too confused about the state that is generating our observations.

The priors on our transition matrix are noninformative, using T[i] ~ Dirichlet(ones(K)/K). The Dirichlet prior used in this way assumes that the state is likely to change to any other state with equal probability. As we’ll see, this transition matrix prior will be overwritten as we observe data.

# Turing model definition.
@model function BayesHmm(y, K)
    # Get observation length.
    N = length(y)

    # State sequence.
    s = zeros(Int, N)

    # Emission matrix.
    m = Vector(undef, K)

    # Transition matrix.
    T = Vector{Vector}(undef, K)

    # Assign distributions to each element
    # of the transition matrix and the
    # emission matrix.
    for i in 1:K
        T[i] ~ Dirichlet(ones(K) / K)
        m[i] ~ Normal(i, 0.5)
    end

    # Observe each point of the input.
    s[1] ~ Categorical(K)
    y[1] ~ Normal(m[s[1]], 0.1)

    for i in 2:N
        s[i] ~ Categorical(vec(T[s[i - 1]]))
        y[i] ~ Normal(m[s[i]], 0.1)
    end
end;

We will use a combination of two samplers (HMC and Particle Gibbs) by passing them to the Gibbs sampler. The Gibbs sampler allows for compositional inference, where different samplers can be applied to different parameters based on their properties. (For API details of these samplers, please see Turing.jl’s API documentation.)

In this case, we use HMC for m and T, representing the emission and transition matrices respectively. We use the Particle Gibbs sampler for s, the state sequence. You may wonder why it is that we are not assigning s to the HMC sampler, and why it is that we need compositional Gibbs sampling at all.

This is because the parameter s is not a continuous variable. It is a vector of integers, and thus Hamiltonian methods like HMC and NUTS won’t work correctly. Gibbs allows us to apply the right tools to the best effect. If you are a particularly advanced user interested in higher performance, you may benefit from setting up your Gibbs sampler to use different automatic differentiation backends for each parameter space.

Time to run our sampler.

g = Gibbs((:m, :T) => HMC(0.01, 50), :s => PG(120))
chn = sample(BayesHmm(y, 3), g, 1000)
╭─FlexiChain (1000 iterations, 1 chain) ───────────────────────────────────────
 ↓ iter  = 1:1000                                                             
 → chain = 1:1                                                                
                                                                              
 Parameters (3) ── AbstractPPL.VarName                                        
  Vector{Vector{Float64}}  T                                                  
  Vector{Float64}          m                                                  
  Vector{Int64}            s                                                  
                                                                              
 Extras (3)                                                                   
  Float64  logprior, loglikelihood, logjoint                                  
╰──────────────────────────────────────────────────────────────────────────────╯

Let’s see how well our chain performed. Ordinarily, using display(chn) would be a good first step, but we have generated a lot of parameters here (s[1], s[2], m[1], and so on). It’s a bit easier to show how our model performed graphically.

The code below generates an animation showing the graph of the data above, and the data our model generates in each sample.

# Extract our m and s parameters from the chain.
m_set = chn[@varname(m), chain=1, stack=true]
s_set = chn[@varname(s), chain=1, stack=true]
1000×30 DimArray{Int64, 2} Parameter(s)
├─────────────────────────────────────────┴────────────── dims ┐
  iter Sampled{Int64} 1:1000 ForwardOrdered Regular Points,
  AnonDim Sampled{Int64} 1:30 ForwardOrdered Regular Points
└──────────────────────────────────────────────────────────────┘
       1  2  3  4  5  6  7  8  9  1022  23  24  25  26  27  28  29  30
    1    1  1  1  1  1  1  1  1  1   1      2   2   2   2   2   2   2   2   2
    2    1  1  1  1  1  1  1  1  1   1      2   2   2   2   2   2   2   2   2
    3    1  1  1  1  1  1  1  1  1   1      2   2   2   2   2   2   2   2   2
    4    1  1  1  1  1  1  1  1  1   1      2   2   2   2   2   2   2   2   2
    ⋮                ⋮               ⋮  ⋱               ⋮                   ⋮
  997    1  1  1  1  1  1  2  2  2   2      2   2   1   1   1   1   1   1   1
  998    1  1  1  1  1  1  2  2  2   2      2   2   1   1   1   1   1   1   1
  999    1  1  1  1  1  1  2  2  2   2      2   2   1   1   1   1   1   1   1
 1000    1  1  1  1  1  1  2  2  2   2  …   2   2   1   1   1   1   1   1   1

Notice that m_set and s_set are both 2D arrays, where the first dimension is the iteration dimension, and the second dimension the parameter dimension. (Without the stack=true option, we would get a vector of vectors.)

# Iterate through the MCMC samples and make an animation.
Niters = size(m_set, 1)

animation = @gif for i in 1:Niters
    m = m_set[i, :]
    s = s_set[i, :]
    emissions = m[s]

    p = plot(
        y;
        chn=:red,
        size=(500, 250),
        xlabel="Time",
        ylabel="State",
        legend=:topright,
        label="True data",
        xlim=(0, 30),
        ylim=(-1, 5),
    )
    plot!(emissions; color=:blue, label="Sample $i")
end every 3
[ Info: Saved animation to /tmp/jl_whqTyvw7gH.gif

Looks like our model did a pretty good job, but we should also check to make sure our chain converges. A quick check is to examine whether the diagonal (representing the probability of remaining in the current state) of the transition matrix appears to be stationary. The code below extracts the diagonal and shows a traceplot of each persistence probability.

# Index the chain with the persistence probabilities.
subchain = chn[[@varname(T[1][1]), @varname(T[2][2]), @varname(T[3][3])]]

plot(subchain; seriestype=:traceplot, title="Persistence Probability", legend=false)

A cursory examination of the traceplot above indicates that all three chains converged to something resembling stationary. We can use the diagnostic functions provided by MCMCDiagnosticTools to engage in some more formal tests, like the Heidelberg and Welch diagnostic.

Efficient Inference With The Forward Algorithm

While the above method works well for the simple example in this tutorial, some users may desire a more efficient method, especially when their model is more complicated. One simple way to improve inference is to marginalize out the hidden states of the model with an appropriate algorithm, calculating only the posterior over the continuous random variables. Not only does this allow more efficient inference via Rao–Blackwellization, but now we can sample our model with NUTS() alone, which is usually a much more performant MCMC kernel.

Thankfully, HiddenMarkovModels.jl provides an extremely efficient implementation of many algorithms related to hidden Markov models. This allows us to rewrite our model as:

using HiddenMarkovModels
using FillArrays
using LinearAlgebra
using LogExpFunctions


@model function BayesHmm2(y, K)
    m ~ Bijectors.ordered(MvNormal([1.0, 2.0, 3.0], 0.5I))
    T ~ filldist(Dirichlet(fill(1/K, K)), K)

    hmm = HMM(softmax(ones(K)), copy(T'), [Normal(m[i], 0.1) for i in 1:K])
    @addlogprob! logdensityof(hmm, y)
end

chn2 = sample(BayesHmm2(y, 3), NUTS(), 1000)
Info: Found initial step size
  ϵ = 0.025
Warning: There were 1 divergent transitions. Consider reparameterising your model or using a smaller step size. For adaptive samplers such as NUTS and HMCDA, consider increasing `target_accept`.
@ Turing.Inference ~/.julia/packages/Turing/4hMHm/src/mcmc/hmc.jl:483
╭─FlexiChain (1000 iterations, 1 chain) ───────────────────────────────────────
 ↓ iter  = 501:1500                                                           
 → chain = 1:1                                                                
                                                                              
 Parameters (2) ── AbstractPPL.VarName                                        
  Vector{Float64}  m                                                          
  Matrix{Float64}  T                                                          
                                                                              
 Extras (14)                                                                  
  Int64    n_steps, tree_depth                                                
  Bool     is_accept, numerical_error                                         
  Float64  acceptance_rate, log_density, hamiltonian_energy,                  
           hamiltonian_energy_error, max_hamiltonian_energy_error, step_size, 
           nom_step_size, logprior, loglikelihood, logjoint                   
╰──────────────────────────────────────────────────────────────────────────────╯

We can compare the chains of these two models, confirming the posterior estimate is similar (modulo label switching concerns with the Gibbs model):

Plotting Chains
plot(chn[@varname(m[1])], label = "m[1], Model 1, Gibbs", color = :lightblue)
plot!(chn2[@varname(m[1])], label = "m[1], Model 2, NUTS", color = :blue)
plot!(chn[@varname(m[2])], label = "m[2], Model 1, Gibbs", color = :pink)
plot!(chn2[@varname(m[2])], label = "m[2], Model 2, NUTS", color = :red)
plot!(chn[@varname(m[3])], label = "m[3], Model 1, Gibbs", color = :yellow)
plot!(chn2[@varname(m[3])], label = "m[3], Model 2, NUTS", color = :orange)

Recovering Marginalized Trajectories

We can use the viterbi() algorithm, also from the HiddenMarkovModels package, to recover the most probable state for each parameter set in our posterior sample:

@model function BayesHmmRecover(y, K, IncludeGenerated = false)
    m ~ Bijectors.ordered(MvNormal([1.0, 2.0, 3.0], 0.5I))
    T ~ filldist(Dirichlet(fill(1/K, K)), K)

    hmm = HMM(softmax(ones(K)), copy(T'), [Normal(m[i], 0.1) for i in 1:K])
    @addlogprob! logdensityof(hmm, y)

    # Conditional generation of the hidden states.
    if IncludeGenerated
        seq, _ = viterbi(hmm, y)
        s := [m[s] for s in seq]
    end
end

chn_recover = sample(BayesHmmRecover(y, 3, true), NUTS(), 1000)
Info: Found initial step size
  ϵ = 0.025
╭─FlexiChain (1000 iterations, 1 chain) ───────────────────────────────────────
 ↓ iter  = 501:1500                                                           
 → chain = 1:1                                                                
                                                                              
 Parameters (3) ── AbstractPPL.VarName                                        
  Vector{Float64}  m, s                                                       
  Matrix{Float64}  T                                                          
                                                                              
 Extras (14)                                                                  
  Int64    n_steps, tree_depth                                                
  Bool     is_accept, numerical_error                                         
  Float64  acceptance_rate, log_density, hamiltonian_energy,                  
           hamiltonian_energy_error, max_hamiltonian_energy_error, step_size, 
           nom_step_size, logprior, loglikelihood, logjoint                   
╰──────────────────────────────────────────────────────────────────────────────╯

Plotting the estimated states, we can see that the results align well with our expectations:

import FlexiChains

Niters = FlexiChains.niters(chn_recover)
p = plot(xlim=(0, 30), ylim=(-1, 5), size=(500, 250))
idxs = sample(1:Niters, 100; replace=false)
for i in idxs
    plot!(
        chn_recover[@varname(s), iter=i, chain=1],
        color = :grey, opacity = 0.1, legend = :false
    )
end
scatter!(y, color = :blue)

p
Back to top