Viterbi Training Part 4 - Why Doesn't This Work?
We saw previously that Viterbi training can predict the parameters of a simple hidden Markov model (hmm). The toy example that we examined had two fairly distinct states. The emissions were drawn from two normal distributions with well separated means. Let's see how the Viterbi training method does when the states are not so different. Here are the parameters that were used to generate the new data. { "states": 2, "transition": [ { "from": 0, "to": 0, "prob": 0.9 }, { "from": 0, "to": 1, "prob": 0.1 }, { "from": 1, "to": 1, "prob": 0.95 }, { "from": 1, "to": 0, "prob": 0.05 } ], "emission": [ { "state": 0, "mean": 0, "std...