Learning Markov Models
Closed this issue · 2 comments
divyat09 commented
Does pgmpy provide methods for fitting/inference in a Markov Model? I could not find them in the documentation of pgmpy, please let me know if there ways to perform exact or approximate inference in case of a Markov Model.
ankurankan commented
@divyat09 You can do exact inference for Markov Models using either Belief Propagation or Variable Elimination. But we don't have support for fitting for Markov Models yet.
divyat09 commented
Thanks for your reply.