View viterbi.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
An implementation of Viterbi Algorithm | |
for decoding Hideen Markov Models. | |
(C) Jiayao Zhang 2017 | |
""" | |
from __future__ import (print_function, division) | |
import numpy as np |