Remove CUDA from the command to build docker image

This commit is contained in:
Damini Satya 2018-11-28 19:53:30 +05:30 committed by Bryan McCann
parent 39720d0713
commit 6b31d8f4cb
1 changed files with 1 additions and 1 deletions

View File

@ -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/`.