CS6601 CS3600 Assignment 6 Hidden Markov Models submission
import numpy as np import operator def gaussian_prob(x, para_tuple): “””Compute the probability of a given x value x (float): observation value para_tuple (tuple): contains two elements, (mean, standard deviation) Probability of seeing a value “x” in a Gaussian distribution. We simplify the problem so you don’t have to take care of integrals. Theoretically speaking, the …
CS6601 CS3600 Assignment 6 Hidden Markov Models submission Read More »