GPU enabled container for Deep Learning and Natural Language Processing.
990
This can take a while depending on your internet connection as it is a fairly large container.
docker pull geezlab/gpu-deep-learning-notebook
Create an ephemeral container named dl-app, which will mount your current working directory to ~/dev within the container. Note that this container will be destroyed once Jupyter is stopped if you don't like this approach replace --rm with -d in the following command.
docker run --rm -p 10000:8888 -e JUPYTER_ENABLE_LAB=yes --runtime="nvidia" -v "$PWD":/home/geez/dev --name dl-app geezlab/gpu-deep-learning-notebook:latest
The previous command will print a full URL with a token that is use to access Jupyter in browser as follows:
`http://<host-ip>:10000/?token=<token>`
That's it, happy coding!
Content type
Image
Digest
Size
2.7 GB
Last updated
almost 8 years ago
docker pull geezlab/gpu-deep-learning-notebook