ML-python-tensorflow-mnist-cpu-service
-
Quickstart project for executing a MNIST classifier using TensorFlow on a CPU.
-
Running
pip install requirements.txt
and thenpython app.py
will start the app on localhost where the user can send GET requests to perform inference. -
eg
.../mnist/{index}
whereindex
is in the range [0:9999] -
NOTE: this quickstart has no onnx model included. This means the tests will fail on the first build.
-
This quickstart has been written using the standard
http.server
python library as there are currently issues with using gunicorn with onnx models on a GPU.