https://github.com/rishit-dagli/tfserving-demos
TF Serving demos
https://github.com/rishit-dagli/tfserving-demos
jupyter-notebook model-serving python3 tensorflow tensorflow-model-server tensorflow-serving tensorflow2
Last synced: 5 months ago
JSON representation
TF Serving demos
- Host: GitHub
- URL: https://github.com/rishit-dagli/tfserving-demos
- Owner: Rishit-dagli
- License: apache-2.0
- Created: 2020-05-11T15:31:52.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-07-30T02:56:34.000Z (about 4 years ago)
- Last Synced: 2025-03-31T09:37:20.168Z (6 months ago)
- Topics: jupyter-notebook, model-serving, python3, tensorflow, tensorflow-model-server, tensorflow-serving, tensorflow2
- Language: Jupyter Notebook
- Homepage:
- Size: 13.4 MB
- Stars: 11
- Watchers: 3
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# TfServing-Demos
[](https://colab.research.google.com/github/Rishit-dagli/TFServing-Demos)
[](https://mybinder.org/v2/gh/Rishit-dagli/TFServing-Demos/master)[](https://www.rishit.tech)
[](https://opensource.org/licenses/Apache-2.0)


Demos for my session about Deploying models to production with TensorFlow Serving. I would urge you to check out
[talks.md](https://github.com/Rishit-dagli/GDG-Ahmedabad-2020/blob/master/talks.md) for more details and the talks I have given about this. I would also urge you to check out the
[blog](https://towardsdatascience.com/deploying-models-to-production-with-tensorflow-model-server-225a81859031) 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:
```py
!pip install pyngrokfrom pyngrok import ngrok
model_tunnel = ngrok.connect(8501)
print(model_tunnel)
```