Question

I used Jahmm to train an HMM using my input sequence. After the training is complete, I have learnt HMM model and my initial input sequence. How do I generate the output states for the input sequence using the learnt HMM model?

Was it helpful?

Solution

I assume you are looking for the most likely state sequence for a given input sequence. This can be retrieved using ViterbiCalculator.stateSequence() in the jahmm package, see the Javadoc.

OTHER TIPS

You can download the Jahmm user guide from here. You can go through this doc for more details about the working of Jahmm.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top