From 6b31d8f4cb2469fa6f7f2c10f2083e2d2f8b0296 Mon Sep 17 00:00:00 2001 From: Damini Satya Date: Wed, 28 Nov 2018 19:53:30 +0530 Subject: [PATCH] Remove CUDA from the command to build docker image --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 687ff4ae..d2e4543f 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ nvidia-docker run -it --rm -v `pwd`:/decaNLP/ -u $(id -u):$(id -g) bmccann/decan If you want to run the same command without CUDA: ```bash -docker run -it --rm -v `pwd`:/decaNLP/ -u $(id -u):$(id -g) bmccann/decanlp:cuda9_torch041 bash -c "COMMAND --device -1" +docker run -it --rm -v `pwd`:/decaNLP/ -u $(id -u):$(id -g) bmccann/decanlp:torch041 bash -c "COMMAND --device -1" ``` For those in the Docker know, you can look at the Dockerfiles used to build these two images in `dockerfiles/`.