-
Notifications
You must be signed in to change notification settings - Fork 837
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update docs * lint * Add API docs * further docs * add local examples * add k8s examples * rewrite about
- Loading branch information
1 parent
f998108
commit 4dca12f
Showing
108 changed files
with
7,954 additions
and
978 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,10 +1,24 @@ | ||
# About | ||
|
||
Seldon V2 APIs provide a state of the art solution for machine learning inference which can be run locally on a laptop as well as on Kubernetes for production. | ||
|
||
## Features | ||
|
||
* A single platform for inference. | ||
* Deploy a wide range of model artifacts and custom models with a single solution. | ||
* Deploy locally in Docker during development and testing of models. | ||
* Deploy at scale on Kubernetes for production. | ||
* Deploy single models to multi-step pipelines. | ||
* Save infrastructure costs by deploys multiple models transparently in inference servers. | ||
* Overcommit on resources to deploy more models than available memory. | ||
* Dynamically extended models with pipelines with a data-centric perspective backed by Kafka | ||
* Explain individual models and pipeliens with state of the art explanation techniques | ||
* Deploy drift and outlier detectors alongside models | ||
* Kubernetes Service mesh agnostic - use the service mesh of your choice. | ||
|
||
|
||
```{toctree} | ||
:maxdepth: 1 | ||
:hidden: | ||
features/index.md | ||
``` | ||
|
||
Introduction to Seldon Core V2 APIs. |
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 |
---|---|---|
@@ -1,10 +1,16 @@ | ||
# APIs | ||
|
||
Seldon provides APIs for management and inference. | ||
|
||
* [API for inference](./inference/index.md) | ||
* [Scheduler API for management](./scheduler/index.md) (Advanced) | ||
* [Internal APIs](./internal/index.md) (Reference) | ||
|
||
```{toctree} | ||
:maxdepth: 1 | ||
:hidden: | ||
inference/index.md | ||
scheduler/index.md | ||
internal/index.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 |
---|---|---|
@@ -1,2 +1,18 @@ | ||
# Inference API | ||
|
||
Seldon inference servers must respect the following API specification. | ||
|
||
* [Seldon, KServe, NVIDIA V2 Inference API Spec](./v2.md) | ||
|
||
In future, Seldon will provide extensions for use with Pipelines, Experiments and Explainers. | ||
|
||
```{toctree} | ||
:maxdepth: 1 | ||
:hidden: | ||
v2.md | ||
``` | ||
|
||
|
||
|
||
|
Oops, something went wrong.