This repository has been migrated to the Cognitive Robot Abstract Machine.
All future development, issue tracking, and contributions is taking place in the new repository. Please update your local clones and bookmarks accordingly.
You can find the source code for this project located at: https://github.com/cram2/cognitive_robot_abstract_machine/tree/main/probabilistic_model.
This package contains an interface for any kind of probabilistic models. The aim of this package is to provide a clean, unifying, well documented API to probabilistic models. Just like sklearn does for classical machine learning models.
Read the docs here https://probabilistic-model.readthedocs.io/en/latest/.
The project uses unittest for testing. To run the tests locally:
pip install -r requirements-dev.txt
pip install -e .
python -m unittest discover testThis project uses GitHub Actions for continuous integration. The CI pipeline runs automatically on push to main/master branches and on pull requests to these branches. It sets up a Python environment, installs dependencies, and runs the tests.
You can see the status of the CI pipeline in the GitHub Actions tab of the repository.