-
Notifications
You must be signed in to change notification settings - Fork 834
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a39dfa4
commit d65eb00
Showing
8 changed files
with
42 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Tutorials | ||
|
||
* [An introduction to building inference pipelines and using Seldon](./workflow.md) | ||
|
||
```{toctree} | ||
:maxdepth: 1 | ||
:hidden: | ||
workflow.md | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Seldon Workflow Introduction | ||
|
||
Seldon inference is built from atomic Model components. Models as [shown here](../inference-artifacts/index) cover a wide range of artifacts including: | ||
|
||
* Core machine learning models, e.g. a Tensorflow model. | ||
* Feature transformations that might be built with custom python code. | ||
* Drift detectors. | ||
* Outlier detectors. | ||
* 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. | ||
1. You test this model in isolation to validate | ||
1. 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 dteectors using Seldon's open source ALibi-detect library and test these in isolation. | ||
1. You join these components together into a Pipeline for the final production setup. | ||
|
||
|
||
These steps are shown in the diagram below: | ||
|
||
![Workflow](./workflow.png) | ||
|
||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters