Created
June 29, 2019 14:41
-
-
Save francoisruty/070d4a8f1c0e2abb72139c65a0644490 to your computer and use it in GitHub Desktop.
Deep learning on Shadow PC
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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