uncategorized

tensorflow-docker

Installing Tensorflow 2.0 on Ubuntu 18.04 using docker. Run all experiments from a container.

I have come across many developers who face serious issues when it comes to installing tensorflow on a linux distro such as Ubuntu. There are very few instances when the installation goes smoothly the first time itself. Mostly, the developer has to face a plethora of error messages which get quite tricky to solve. Some of the error messages are shown below:

[...\stream_executor\dso_loader.cc] Couldn't open CUDA library nvcuda.dll

[...\stream_executor\cuda\cuda_dnn.cc] Unable to load cuDNN DSO

Similar error messages can be found in this official tensorflow link → https://www.tensorflow.org/install/errors

Let’s make things easier and lives simpler:

Enter Docker:

Using Docker containers the life of a developer becomes easier by a massive amount. Many developers shy away from using docker containers thinking that it introduces extra dependencies into the system followed by maintenance issues, but that’s a misconception.

Docker containers actually reduce the time spent on figuring out different library versions to be installed and how they would communicate with one another. Containers solve multiple issues which arise with incompatibility of libraries and version mismatch. A container is completely independent from it’s host and reduces the chances of ruining environments on the host machine

Installing Docker and NVIDIA Docker :

In order to run tensorflow as a container we would obviously need the latest version of docker to be installed and configured. Along with that we would also need NVIDIA Docker v2 to be installed on the host machine. NVIDIA Docker plays a beautiful role of exposing the host machine’s GPU and GPU drivers to a container. Hence the developer only has to worry about installing the correct NVIDIA GPU driver on this machine. The NVIDIA Docker v2 does the task of making it available for the container.

In order to learn how to install the latest version of Docker and NVIDIA Docker v2 , head over to my earlier post which describes this is in detail. Link given below:

Deep Learning for Production: Deploying YOLO using Docker.

Installing tensorflow using Docker:

Once your docker and NVIDIA docker v2 installation is complete with nvidia-smi giving you the output as shown in Fig 1, when run inside a docker container, we can move ahead with pulling the correct image for tensorflow.

Fig 1: Output of nvidia-smi inside docker container

Simply doing a docker pull tensorflow/tensorflow would download the latest version of tensorflow image. This can be run using the following command

docker run -it -rm --runtime=nvidia --name=tensorflow_container ***tensorflow_image_name***

Executing the command given above will run the tensorflow container in an interactive shell along with the availability of the NVIDIA gpus inside the container.

Now there are certain modifications which can be performed to get the tensorflow version required along with other libraries. Let’s say you want the latest version of tensorflow along with gpu support and python 3 pre-installed. The image for this customization can be easily pulled using the following command:

docker pull tensorflow/tensorflow:latest-gpu-py3

You can find many other such images in the following link →https://hub.docker.com/r/tensorflow/tensorflow/tags

Just do a docker pull on the one which suits your requirement.

If you want other libraries along with tensorflow, you can put them in a dockerfile and perform build command.

Fig 2: Custom dockerfile with tensorflow

Fig 2 above shows a custom dockerfile with tensorflow v1 image being used along with installation of other libraries such as OpenCV,Moviepy,Keras and Apache Kafka for python

Once inside the container invoked using docker run, you can setup code to use tensorflow easily as you would done on the host machine without the container.

I would encourage all AI/ML practitioners to increase the use of docker containers to increase their research and development efficiency by reducing the time spent in managing multiple libraries and dueling with incompatibility errors.

Share

© 2019 NAYAN All Rights Reserved