Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
4answers
832 views

Hidden Markov Models

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 ...
4
votes
2answers
354 views

Training Hidden Markov Models without Tagged Corpus Data

For a linguistics course we implemented Part of Speech (POS) tagging using a hidden markov model, where the hidden variables were the parts of speech. We trained the system on some tagged data, and ...
3
votes
2answers
151 views

Using Markov models to convert all-caps to mixed-case and related problems

I've been thinking about using Markov techniques to restore missing information to natural language text. Restore all-caps text to mixed-case. Restore accents / diacritics to languages which should ...
1
vote
1answer
117 views

What HMM (Hidden Markov Model) compression libraries available for .NET?

I am looking for a library that use Markov Models/Hidden Markov Models for data compression. I will need to use it from the .NET. I googled for MM/HMM compressors but didn't find any helpful reference ...
1
vote
1answer
365 views

Applying hidden Markov model to multiple simultaneous bit sequences

This excellent article on implementing a Hidden Markov Model in C# does a fair job of classifying a single bit sequence based on training data. How to modify the algorithm, or build it out (multiple ...
1
vote
1answer
98 views

Update Rule in Temporal difference

The update rule TD(0) Q-Learning: Q(t-1) = (1-alpha) * Q(t-1) + (alpha) * (Reward(t-1) + gamma* Max( Q(t) ) ) Then take either the current best action (to optimize) or a random action (to explorer) ...
1
vote
2answers
116 views

Reinforcement learning And POMDP

I am trying to use Multi-Layer NN to implement probability function in Partially Observable Markov Process.. I thought inputs to the NN would be: current state, selected action, result state; The ...
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
272 views

Viterbi algorithm in linear time

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 ...