Skip to content

Rishit-dagli/TFServing-Demos

Repository files navigation

TfServing-Demos

Open in Colab button Binder

License GitHub followers Twitter Follow Twitter URL

Demos for my session about Deploying models to production with TensorFlow Serving. I would urge you to check out talks.md for more details and the talks I have given about this. I would also urge you to check out the blog by me on the same.

Port Forwarding while on Colab

In case you want to test your API out while staying on Colab itself, you could easily forward your REST API port with ngrok to try out the API outside of Colab using this code:

!pip install pyngrok

from pyngrok import ngrok
model_tunnel = ngrok.connect(8501)
print(model_tunnel)