Reputation: 61
I took part in an online challenge recently where all participants are asked to submit models in the form of a docker image so that the organizers can run them and reproduce results. Although I've googled key words incorporated docker and tensorflow, I didn't find satisfying results. As I'm new to docker, so can anybody teach me how to build a docker image for tensorflow and python. I'm using tensorflow in python with jupyter notebook on windows10. Thanks a lot!
Upvotes: 3
Views: 2513
Reputation: 16505
Here is the Docker search result sorted based on stars
Apparently, this is the official repo
https://hub.docker.com/r/tensorflow/tensorflow/
Here is the Dockefile link https://github.com/tensorflow/tensorflow/blob/master/tensorflow/tools/dockerfiles/tools.Dockerfile
Upvotes: 1
Reputation: 1042
If you are able to set this up in some base system (say a linux system), you can easily containerize it with Dockerfile's.
Lots of pages can help you write one, For starters follow,
Dockerfile formation - Digital Ocean
Upvotes: 1