hidden-markov-models

Hidden Markov Models

Hi, I want to get started on HMM's, but don't know how to go about it. Can people here, give me some basic pointers, where to look? More than just the theory, I like to do a lot of hands-on. So, would prefer resources, where I can write small code snippets to check my learning, rather than just dry text. Will be hoping to see some rep...

Hidden markov models implementation in .net?

Does anyone know of any HMM implementation in .net? I've some stuff that I did that was basicly reverse engineered from what little knowledge that I have regarding the subject and some c++ code of a very domain specific application that one of my professors did. I want to improve it somewhat and having another's work that is in the sa...

Viterbi algorithm in linear time

Hey, I have a problem where given a Hidden Markov model and the states S I need to find an algorithm that returns the most probable path through the Hidden Markov model for a given sequence X in time O(|S|). I was thinking of developing a graph where I would have all the different states at different positions in X and run a shortest p...