Tagged Questions

Hidden Markov Models

learn more… | top users | synonyms

32
votes
1answer
524 views

Fitting a scikits.learn.hmm.GaussianHMM to variable length training sequences

I'd like to fit a scikits.learn.hmm.GaussianHMM to training sequences of different length. The fit method, however, prevents using sequences of different length by doing obs = np.asanyarray(obs) ...
11
votes
1answer
194 views

Hidden Markov Models with C++

I've been looking into implementations of Hidden Markov Models in C++ lately. I was wondering If I could use any of the existing HMM libraries written in C++ out there to use with Action Recognition ...
4
votes
2answers
1k views

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 ...
3
votes
2answers
120 views

gesture recognition with kinect with python: hmm learning

I want to do gesture recognition in python with kinect. After reading up on some theory, I think one of the best method is unsupervised learning with Hidden Markov Model (HMM) (baum welch or some EM ...
3
votes
2answers
610 views

C/C++ Code Examples with HTK (Hidden Markov Toolkit)

I am trying to get started with HTK, I grabbed a copy, compiled it, grabbed the book, and all went more or less fine, little troubles here and there but nothing serious. Now after reading the book ...
2
votes
1answer
625 views

What HMM (Hidden Markov Models) libraries have good support for Python?

I'll have to train a HMM (Hidden Markov Models) system. I was told I could use HTK or the CSLU Toolkit. The first has a binding for Python, apparently, called pyhtk. Have any of you used that ...
2
votes
1answer
223 views

Baum-Welch algorithm for pos tagger

everyone. I'm using the Baum-Welch algorithm to train a pos tagger,it is totally in the unsupervised way. Here comes the problem: When i get the label result, I only get a sequence of numbers. I can't ...
1
vote
1answer
85 views

Mallet HMM Training Problems

I am struggling at the moment with Mallet's ridiculously poor documentation regarding HMMs. I have managed to import the data into instances(adapted from the ImportExample.java snippet) and I was just ...
1
vote
1answer
164 views

Checking error codes from programs - specifically HTK Toolkit

I have a bash script that calls HTK components such as HCopy and HVite to compute the phone level boundaries of a piece of text. How can I check if the operation was a success? I have tried the ...
1
vote
1answer
127 views

How to sift idioms and set phrases apart from other common phrases using NLP techniques?

What techniques exist that can tell the difference betwen plain common phrases such as "to the", "and the" and set phrases and idioms which have their own lexical meanings such as "pick up", "fall in ...
1
vote
1answer
162 views

HMM for perspective estimation in document image, can't understand the algorithm

Here is a paper, it is about estimating the perspective of binary image containing text and some noise or non text objects. PDF document The algorithm uses the Hidden Markov Model: actually two ...
0
votes
0answers
36 views

HMM Application for Kinect in C# WPF

I want to apply Hidden Markov Model to Kinect with C# WPF API.I'm not sure that if it is possible or not? What do you think about that? This is a good work or not? I mean some friends says that C++ or ...
0
votes
1answer
44 views

initialize HiddenMarkovModelTrainer object

i'm doing gesture recognition in python and one the the more complete library i've found that can manage Hidden Markov Model is nltk. But there is something that i can't understand. First of all, the ...
0
votes
1answer
51 views

Please tell me some libraries pr toolkit of Hidden Markov Models for C# [closed]

I am working on a project on Gesture Recognition and have decided to use to HMM. So please point out some good libraries on the .Net platform (C#) for the same. Any help will be highly appreciated ...
0
votes
0answers
21 views

Hidden markov models: output observations defined by a (non-hidden) markov model?

Let me explain what my goal is: I would like to define a hidden markov model with two hidden states and say, five possible observations. As I understand (I'm quite new to HMMs), in each state HMM will ...
0
votes
1answer
34 views

What is the algorithm used in learn_dmm.m in Kevin Murphy HMM toolbok?

i'm going to rewrite a MATLAB script that use the Kevin Murphy's toolbok in Python. I know that there are some HMM algos implementation in python (Viterbi, Baum Welch, Backword Forward) so i think ...
0
votes
0answers
52 views

Viterbi algorithm for real-time applications

I know that given an HMM and an observation, Viterbi algorithm can guess the hidden states sequence that produce this observation. But what about the case you want to use it real-time? I mean finding ...
0
votes
1answer
155 views

Hidden Markov Model predicting next observation

I have a sequence of 500 observations. Observations are just the movements of bird. And i want to predict what would be the 501st movement of the bird? I searched the web and I guess this can be done ...
0
votes
0answers
18 views

Can Neural Networks be used to boost Sphinx-4

I just had an Idea of implementing Neural nets to decompose words just as the Sphinx 4's Inbuilt HMM does However I am not sure whether the HMM's in question have emmisions which canbe mimicked by the ...
0
votes
0answers
32 views

need help with finding ways for anomaly detection [closed]

I am doing a research for my major project. It is a Host Based Intrusion Detection System. What I am currently doing is searching for various techniques on how I can detect anomaly. for eg. i have ...
0
votes
1answer
65 views

classification technique

My BE final year project is about sign language recognition. I'm terribly confused in choosing the right classification technique for patterns seen in the video of signs generated by a dumb user. I ...