Kirill Kalash
Kirill Kalash

Reputation: 33

Deploying tensorflow model to GCP without docker

I want to deploy my existing Tensorflow model to Google Cloud Platform. I have an image detection model and I want to make a Python app that will have real time detection.

All tutorials that I found were using Docker. Is it possible to deploy Tensorflow model to server without Docker?

Upvotes: 3

Views: 386

Answers (1)

Dustin Ingram
Dustin Ingram

Reputation: 21520

Yes, you should be able to deploy your Tensorflow model to either:

neither of which require Docker.

Or, if you don't want to build an application around your model, you could also deploy it to Cloud ML Engine.

Upvotes: 2

Related Questions