After the model is trained and stored in S3 bucket, the next step is to use that model for inference.
This chapter explains how to use the previously trained model and run inference using TensorFlow and Keras on Amazon EKS.
A model from training was stored in the S3 bucket in previous section. Make sure S3_BUCKET
and AWS_REGION
environment variables are set correctly.
curl -LO https://eksworkshop.com/advanced/420_kubeflow/kubeflow.files/mnist-inference.yaml
envsubst <mnist-inference.yaml | kubectl apply -f -
Wait for the containers to start and run the next command to check its status
kubectl get pods -l app=mnist,type=inference
You should see similar output
NAME READY STATUS RESTARTS AGE
mnist-96fb6f577-k8pm6 1/1 Running 0 116s
Now, we are going to use Kubernetes port forward for the inference endpoint to do local testing:
kubectl port-forward `kubectl get pods -l=app=mnist,type=inference -o jsonpath='{.items[0].metadata.name}' --field-selector=status.phase=Running` 8500:8500
Leave the current terminal running and open a new terminal for installing tensorflow
Install tensorflow
package:
curl -O https://bootstrap.pypa.io/get-pip.py
python3 get-pip.py --user
pip3 install tensorflow --user
Use the script inference_client.py to make prediction request. It will randomly pick one image from test dataset and make prediction.
curl -LO https://eksworkshop.com/advanced/420_kubeflow/kubeflow.files/inference_client.py
python inference_client.py --endpoint http://localhost:8500/v1/models/mnist:predict
It will randomly pick one image from test dataset and make prediction.