-
Notifications
You must be signed in to change notification settings - Fork 832
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1702 from cliveseldon/1692_drift_outlier_examples
Outlier and Drift Detection Examples
- Loading branch information
Showing
82 changed files
with
1,113 additions
and
6,076 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# CIFAR10 Drift Detector | ||
|
||
Run the [notebook demo](cifar10_drift.ipynb) to test. | ||
|
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,30 @@ | ||
apiVersion: machinelearning.seldon.io/v1 | ||
kind: SeldonDeployment | ||
metadata: | ||
name: tfserving-cifar10 | ||
spec: | ||
protocol: tensorflow | ||
transport: rest | ||
predictors: | ||
- componentSpecs: | ||
- spec: | ||
containers: | ||
- args: | ||
- --port=8500 | ||
- --rest_api_port=8501 | ||
- --model_name=resnet32 | ||
- --model_base_path=gs://seldon-models/tfserving/cifar10/resnet32 | ||
image: tensorflow/serving | ||
name: resnet32 | ||
ports: | ||
- containerPort: 8501 | ||
name: http | ||
graph: | ||
name: resnet32 | ||
type: MODEL | ||
endpoint: | ||
service_port: 8501 | ||
logger: | ||
mode: all | ||
name: model | ||
replicas: 1 |
Oops, something went wrong.