Which python library for supervised learning of HMMs?
I have a dataset which looks like this:
timestamp sensor1 sensor2 sensor3 sensor4 sensor5 action
1 0.05 0.04 0.10 0.39 0.59 A1
2 0.25 0.14 0.11 0.34 0.59 A2
3 0.15 0.34 0.13 0.36 0.59 A3
.......
Since I have the observations (sensor1-sensor5) and the corresponding labels (A1, A2, A3, etc.) for each timestamp, I want to perform supervised learning using a hidden markov model.
Which library could I use to learn the observation distribution and the parameters of the HMM ? Thank you! P.S. : I already took a look at hmmlearn, but it seems to be only for unsupervised learning.
Topic markov-hidden-model library python
Category Data Science