Graph Examples
!kubectl create namespace seldon!kubectl config set-context $(kubectl config current-context) --namespace=seldonInput and output transformer with model in same pod
!cat tin-model-tout.yaml!kubectl create -f tin-model-tout.yaml!kubectl wait --for condition=ready --timeout=300s sdep --all -n seldon!curl -s -d '{"data": {"ndarray":[[1.0, 2.0, 5.0]]}}' \
-X POST http://localhost:8003/seldon/seldon/test/api/v1.0/predictions \
-H "Content-Type: application/json"!kubectl delete -f tin-model-tout.yamlInput and output transformer with model in separate pods
!cat tin-model-tout-sep-pods.yaml!kubectl create -f tin-model-tout-sep-pods.yaml!kubectl wait --for condition=ready --timeout=300s sdep --all -n seldonInput and output transformer with svcOrch in separate pod
Combiner sperate pods
Combiner
Combiner seperate pods prepack server
Combiner prepack server same pod
Last updated
Was this helpful?