Skip to content

Instantly share code, notes, and snippets.

@francoisruty
Created June 29, 2019 14:41
Show Gist options
  • Save francoisruty/070d4a8f1c0e2abb72139c65a0644490 to your computer and use it in GitHub Desktop.
Save francoisruty/070d4a8f1c0e2abb72139c65a0644490 to your computer and use it in GitHub Desktop.
Deep learning on Shadow PC
# Run those commands:
conda update conda
conda update anaconda
conda update python
conda update –all
conda create –name tf-gpu
cmd
activate tf-gpu
conda install -c aaronzs tensorflow-gpu #(note: this channel proposes a recent Tensorflow binary for windows)
conda install -c anaconda cudatoolkit
conda install -c anaconda cudnn
# Now, Tensorflow and all necessary stuff is installed. Let’s test now that everything is working, and launch a train:
conda install -c anaconda git
git clone https://github.com/tensorflow/models.git
cd models
cd tutorials/image/cifar10
python cifar10_train.py
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment