Search code examples
apache-sparkpysparkapache-spark-mllibhidden-markov-models

Hidden Markov Model - HMM with Apache Spark


i need to know how to use HMM on top of Apache Spark. Its not present in MLlib. Is there any alternatives ?

Thanks

Elsayed


Solution

  • Best I can find is a 2 year old implementation on spark.

    You might want to investigate using something other than spark or HMM or just bite the bullet and implement it yourself. Implementing the viterbi algorithm is not particularly hard, here is my many years old implementation.