Skip to content

Instantly share code, notes, and snippets.

@wbuchwalter
Created December 12, 2016 10:19
Show Gist options
  • Save wbuchwalter/cb41e1e782fce28041a90574663726fd to your computer and use it in GitHub Desktop.
Save wbuchwalter/cb41e1e782fce28041a90574663726fd to your computer and use it in GitHub Desktop.
#!/bin/bash
#Install Driver and nvidia-docker
sudo apt-get install -qq linux-headers-`uname -r`
sudo chmod +x /tools/NVIDIA-Linux-x86_64-375.20.run
sudo sh /tools/NVIDIA-Linux-x86_64-375.20.run -a -s
sudo dpkg -i /tools/nvidia-docker_1.0.0.rc.3-1_amd64.deb
#Get sources and build a docker image
cd /home/agent
sudo git clone https://github.com/wbuchwalter/on-demand-training-vsts
cd on-demand-training-vsts
sudo docker build -f Dockerfile.train -t cntk-mnist .
#Run the training, with a volume to save output
ps ax | grep dpkg
sudo nvidia-docker run cntk-mnist $1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment