Used as a PoC that CUSUM can accurately predict when to send alerts
#virtual env To use python virtual environments:
python3 -m venv _python
source _python/bin/activate
pip install -r requirements/dev.txt
pip install -r requirements/common.txt
In order to make gifs, install imagemagick
brew install imagemagick
or
sudo apt-get install imagemagick
Tests are written using the built in unit testing library unittest. Each directory includes unit tests for its own functionality. All tests can be run at once by using the convenience script run_tests.sh after setting up the python virtual environment:
./run_tests