Implementations of basic rl and planning algorithms and domains mainly for cog sci research.
$ pip install --upgrade git+https://github.com/markkho/msdm.git
After downloading, go into the folder and install the package locally (with a symlink so its updated as source file changes are made):
$ pip install -e .
It is recommended to use a virtual environment.
Related libraries:
To run all tests: make test
To run tests for some file: python -m py.test msdm/tests/$TEST_FILE_NAME.py
To lint the code: make lint