项目作者: Rishit-dagli

项目描述 :
TF Serving demos
高级语言: Jupyter Notebook
项目地址: git://github.com/Rishit-dagli/TFServing-Demos.git
创建时间: 2020-05-11T15:31:52Z
项目社区:https://github.com/Rishit-dagli/TFServing-Demos

开源协议:Apache License 2.0

下载


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:

  1. !pip install pyngrok
  2. from pyngrok import ngrok
  3. model_tunnel = ngrok.connect(8501)
  4. print(model_tunnel)