pgmpy is a Python package for working with Bayesian Networks and related models such as Directed Acyclic Graphs, Dynamic Bayesian Networks, and Structural Equation Models. It combines features from causal inference and probabilistic inference literature to allow users to seamlessly work between them. It implements algorithms for structure learning, causal discovery, parameter estimation, probabilistic and causal inference, and simulations.
- Documentation: https://pgmpy.org/
- Installation: https://pgmpy.org/started/install.html
- Mailing List: https://groups.google.com/forum/#!forum/pgmpy .
- Community chat: discord (Older chat at: gitter)
- Creating a Bayesian Network: view |
- Structure Learning/Causal Discovery: view |
- Parameter Learning: view |
- Probabilistic Inference: view |
- Causal Inference: view |
- Extending pgmpy: view |
- Full List of Examples: https://github.com/pgmpy/pgmpy/tree/dev/examples
- Tutorials: https://github.com/pgmpy/pgmpy_notebook/
If you use pgmpy
in your scientific work, please consider citing us:
Ankur Ankan, & Johannes Textor (2024). pgmpy: A Python Toolkit for Bayesian Networks. Journal of Machine Learning Research, 25(265), 1–8.
Bibtex:
@article{Ankan2024,
author = {Ankur Ankan and Johannes Textor},
title = {pgmpy: A Python Toolkit for Bayesian Networks},
journal = {Journal of Machine Learning Research},
year = {2024},
volume = {25},
number = {265},
pages = {1--8},
url = {http://jmlr.org/papers/v25/23-0487.html}
}
The latest codebase is available in the dev
branch of the repository.
To install pgmpy from the source code:
$ git clone https://github.com/pgmpy/pgmpy
$ cd pgmpy/
$ pip install -r requirements.txt
$ python setup.py install
To run the tests, you can use pytest:
$ pytest -v pgmpy
If you face any problems during installation let us know, via issues, mail or at our discord channel.
Please feel free to report any issues on GitHub: https://github.com/pgmpy/pgmpy/issues.
Before opening a pull request, please have a look at our contributing guide If you face any problems in pull request, feel free to ask them on the mailing list or gitter.
If you would like to implement any new features, please have a discussion about it before starting to work on it. If you are looking for some ideas for projects, we a list of mentored projects available at: https://github.com/pgmpy/pgmpy/wiki/Mentored-Projects.
We use sphinx to build the documentation. Please refer: https://github.com/pgmpy/pgmpy/wiki/Maintenance-Guide#building-docs for steps to build docs locally.
pgmpy is released under MIT License. You can read about our license at here