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)

which only works on a list of equally shaped arrays. Does anyone have a hint on how to proceed?

link|improve this question

70% accept rate
2  
Unfortunately, this is only one of the issues of the HMM in scikit-learn; it's also lacks numerical stability. There has talk on the mailing list of perhaps dropping it not too long ago. – larsmans Jul 8 '11 at 23:33
feedback

1 Answer

You may do re-sampling to "reshape" a given input to the desired length.

link|improve this answer
Not sure why this hasn't been upvoted. +1 for the easiest solution? – Jon Dec 5 '11 at 2:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.