This project presents an approach to develop a predictive maintenance model from Reefer container metrics events and integrate it in real time.
The content is presented in a book view, and the goal is to run all those components together, and build the logistic regression model, deployed as a service.
The content of this repository is written with markdown files, packaged with MkDocs and can be built into a book-readable format by MkDocs build processes.
- Install MkDocs locally following the official documentation instructions.
- Install Material plugin for mkdocs:
pip install mkdocs-material
git clone https://github.com/ibm-cloud-architecture/refarch-reefer-ml.git
(or your forked repository if you plan to edit)cd refarch-reefer-ml
mkdocs serve
- Go to
http://127.0.0.1:8000/
in your browser.
- Ensure that all your local changes to the
master
branch have been committed and pushed to the remote repository.git push origin master
- Ensure that you have the latest commits to the
gh-pages
branch, so you can get others' updates.git checkout gh-pages git pull origin gh-pages git checkout master
- Run
mkdocs gh-deploy
from the root refarch-reefer-ml directory.