hmm
hmm copied to clipboard
An implementation of the Viterbi Algorithm for training Hidden Markov models. This repo accompanies the video found here: https://www.youtube.com/watch?v=kqSzLo9fenk
Hi, thanks a lot for the tutorial, I found it very intuitive. However there is a mistake at the end of the part concerning the Viterbi algorithm. It is not...
The following code does the backtracking part of your example. [aa.txt](https://github.com/luisguiserrano/hmm/files/2941303/aa.txt)
In the code, the p_s is initialized as 2/3, and p_r as 1/3. Python seems to complier p_s and p_r as integers as the value of zero. Maybe it should...