drifting

Drift detection server and client in Python


License
Apache-2.0
Install
pip install drifting==0.2.1

Documentation

Drifting

CI/CD PyPi License

The most flexible Drift Detection Server.

Learn about the concepts in Docs


Main features:

πŸ‘ surprisingly easy to use

πŸ‘ production-ready server

πŸ‘ created with real use-cases in mind

πŸ‘ not just a math library

πŸ‘ Python-first, API-first

Quickstart

drifting is built with Developer Experience in mind.

You communicate with Drift Detection Server via DriftingClient or API, both for fitting the Drift Detector and detecting the drift. In your training pipeline, use the fit method:

import drifting
drifting.fit(train_column, project="example")

Then, next to your prediction call:

import drifting
response = drifting.detect(inference_data, project="example")
response.is_drift

Note that this makes the usage of the server as easy as possible.

  1. It's not required to manage any artifacts,
  2. No need to implement any feedback loops,
  3. No need to collect test data,
  4. No need to leave your python environment, fetch any logs,
  5. You only make request to the server twice.

Local installation and running

To install dependencies, use poetry:

poetry install

And run server locally:

python drifting/app.py

Production usage

To use Drift Detection Server in your organization, build and deploy the Docker image, or use the pre-built version from TODO.

Docker on a custom server

To deploy the on cloud instance using docker, you can easily pull the image and run it:

TODO

Kubernetes and Helm

For more demanding use-cases, it's facilitated to deploy Drift Detection Server on kubernetes. DDS is packaged with bitnami. You can include the chart by

TODO

Real-world scenarios

Even though Drift Detection Server makes the task incredibly easy, it still follows the MLOps culture, assuring reproducibility, observability and scalability postulates are fulfilled.

Please read the Docs to learn about real-world usage.