Imagine you cannot see the weather outside, only whether your office-mate walks in with an umbrella. The umbrella is a noisy clue: people forget umbrellas on rainy days and carry them on sunny ones. From a week of umbrella-or-not observations, can you reconstruct the most likely sequence of sunny and rainy days?
That is exactly the setup of a hidden Markov model (HMM). There is a hidden chain of states that evolves step by step â today's weather depends only on yesterday's. You never observe the states directly; you only see emissions, each a noisy signal of the hidden state behind it.
The central question is decoding: given the clues, what is the single most likely path through the hidden states? Naively there are exponentially many paths to consider. The beautiful surprise is that a clever algorithm finds the best one fast.
Comments
Loading comments...