0 | I am using the jahmm implementation of the Hidden Markov Models.To find the most likely state sequence for a given input sequence. I'm using viterbi algorithm.ViterbiCalculator(java.util.List oseq, Hmm hmm) I'm confused about the format I should provide as List for the oseq here. Is it List of string or list of int. However both didn't work for me. I tried reading the manual but couldnt understand. Thank you |