Content deleted Content added
→A concrete example: refactored |
moved example to using Markov models |
||
Line 2:
In a regular Markov model, the state is directly visible to the observer, and therefore the state transition probabilities are the only parameters. A '''hidden Markov model''' adds outputs: each state has a probability distribution over the possible output tokens. Therefore, looking at a sequence of tokens generated by an '''HMM''' does not directly indicate the sequence of states.
== A concrete example ==▼
{{HMM example}}▼
''This examaple is further elaborated in [[Viterbi algorithm]] page''▼
==State transitions in a hidden Markov model==
Line 33 ⟶ 27:
* Given the model parameters, find the most likely sequence of (hidden) states which could have generated a given output sequence. Solved by the [[Viterbi algorithm]].
* Given an output sequence, find the most likely set of state transition and output probabilities. Solved by the [[Baum-Welch algorithm]].
▲=== A concrete example ===
▲{{HMM example}}
===Applications of hidden Markov models===
|