Whitebox is an open source E2E ML monitoring platform with edge capabilities that plays nicely with kubernetes
Documentation: https://squaredev-io.github.io/whitebox
Source Code: https://github.com/squaredev-io/whitebox
Roadmap: https://github.com/squaredev-io/whitebox/milestone/2
Whitebox is an open source E2E ML monitoring platform with edge capabilities that plays nicely with kubernetes.
The key features are:
- Classification models metrics
- Regression models metrics
- Data / model drift monitoring
- Alerts
Design guidelines:
- Easy: Very easy to set up and get started with.
- Intuitive: Designed to be intuitive and easy to use.
- Pythonic SDK: Pythonic SDK for building your own monitoring infrastructure.
- Robust: Get production-ready MLOps system.
- Kubernetes: Get production-ready code. With automatic interactive documentation.
The project is still in rapid development so to run the server clone the repo and run:
python -m venv .venv
pip install -r requirements.txt
ENV=dev uvicorn src.main:app --reloadIn the near future you will be able to pip install whitebox and run whitebox serve to run whitebox.
All you have to do is register a model and send inference data through the SDK.
sequenceDiagram
actor user
participant whitebox
user->>user: Import sdk
note over user, whitebox: Configure model and monitors
user->>whitebox: Register model and training set via SDK
whitebox-->>user: Model ID
user->>whitebox: Log model inferences and actuals
note over user, whitebox: You can now start monitoring metrics and get alerts
user->>whitebox: Setup monitors to get specific alert
whitebox-->>user: Get alerted when an anomaly occurs
python -m venv .venv
pip install -r requirements.txt
pre-commit installENV=dev uvicorn src.main:app --reload- Run:
ENV=test pytest -s - Watch:
ENV=test ptw - Run test coverage
ENV=test coverage run -m pytest - Look at coverage report:
coverage reportorcoverage htmlto generate an html. To view it in your browser open thehtmlcov/index.htmlfile.
Documentation is hosted bby GitHub here: https://squaredev-io.github.io/whitebox
mkdocs serve -f docs/mkdocs/mkdocs.yml -a localhost:8001
You can install whitebox and all of its dependencies in your k8s cluster using helm
helm repo add squaredev https://chartmuseum.squaredev.io/
helm repo update
helm install whitebox squaredev/whiteboxWe happily welcome contributions to Whitebox. You can start by opening a new issue!