Examples

Workflows

Seldon inference is built from atomic Model components. Models as shown here cover a wide range of artifacts including:

  • Core machine learning models, e.g. a PyTorch model.

  • Feature transformations that might be built with custom python code.

  • Drift detectors.

  • Outlier detectors.

  • Explainers

  • Adversarial detectors.

A typical workflow for a production machine learning setup might be as follows:

  1. You create a Tensorflow model for your core application use case and test this model in isolation to validate.

  2. You create SKLearn feature transformation component before your model to convert the input into the correct form for your model. You also create Drift and Outlier detectors using Seldon's open source Alibi-detect library and test these in isolation.

  3. You join these components together into a Pipeline for the final production setup.

These steps are shown in the diagram below:

Workflow

Examples & Tutorials

This section will provide some examples to allow operations with Seldon to be tested so you can run your own models, experiments, pipelines and explainers.

Getting Started Examples

Models

Pipelines

Explainers

Servers

Experiments

Making Inference Requests

Misc

Further Kubernetes Examples

Advanced Examples

Last updated

Was this helpful?