pgmpy/pgmpy_tutorials

Learning Markov Models

Closed this issue · 2 comments

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.

@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.

Thanks for your reply.