Main Content

Hidden Markov Models

Markov models for data generation

Markov processes are examples of stochastic processes—processes that generate random sequences of outcomes or states according to certain probabilities. Markov processes are distinguished by being memoryless—their next state depends only on their current state, not on the history that led them there. Models of Markov processes are used in a wide variety of applications, from daily stock prices to the positions of genes in a chromosome. Hidden Markov Models (HMM) seek to recover the sequence of states that generated a given set of observed data.

Functions

hmmdecodeHidden Markov model posterior state probabilities
hmmestimateHidden Markov model parameter estimates from emissions and states
hmmgenerateHidden Markov model states and emissions
hmmtrainHidden Markov model parameter estimates from emissions
hmmviterbiHidden Markov model most probable state path

Topics