codebreach / example-seldon

Example for end-to-end machine learning on Kubernetes using Kubeflow and Seldon Core

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Train and Deploy Machine Learning Models on Kubernetes with Kubeflow and Seldon-Core

MNIST

Using:

The example will be the MNIST handwritten digit classification task. We will train 3 different models to solve this task:

  • A TensorFlow neural network model.
  • A scikit-learn random forest model.
  • An R least squares model.

We will then show various rolling deployments

  1. Deploy the single Tensorflow model.
  2. Do a rolling update to an AB test of the Tensorflow model and the sklearn model.
  3. Do a rolling update to a Multi-armed Bandit over all 3 models to direct traffic in real time to the best model.

In the follow we will:

  1. Install kubeflow and seldon-core on a kubernetes cluster
  2. Train the models
  3. Serve the models

Setup

Either :

  1. Follow the kubeflow docs to
    1. Create a persistent disk for NFS. Call it nfs-1.
    2. Install kubeflow with an NFS volume, Argo and seldon-core onto your cluster.
  2. Follow a consolidated guide to do the steps in 1.

MNIST models

Tensorflow Model

SKLearn Model

R Model

Train the Models

Follow the steps in ./notebooks/training.ipynb to:

  • Run Argo Jobs for each model to:
    • Creating training images and push to repo
    • Run training
    • Create runtime prediction images and push to repo
    • Deploy individual runtime model

To push to your own repo the Docker images you will need to setup your docker credentials as a Kubernetes secret using the template in k8s_setup/docker-credentials-secret.yaml.tpl.

Serve the Models

Follow the steps in ./notebooks/serving.ipynb to:

  1. Deploy the single Tensorflow model.
  2. Do a rolling update to an AB test of the Tensorflow model and the sklearn model.
  3. Do a rolling update to a Multi-armed Bandit over all 3 models to direct traffic in real time to the best model.

If you have installed the Seldon-Core analytics you can view them on the grafana dashboard:

Grafana

About

Example for end-to-end machine learning on Kubernetes using Kubeflow and Seldon Core

License:Apache License 2.0


Languages

Language:Jupyter Notebook 43.8%Language:Python 29.6%Language:Shell 15.1%Language:R 8.8%Language:Makefile 2.2%Language:Smarty 0.5%