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
# !/bin/bash | |
# Run TensorFlow's tf_cnn benchmarks in tensorflow_p36 virtualenv | |
# Activate TensorFlow virtual environment | |
#source activate tensorflow_p36 | |
# Clone benchmark scripts | |
git clone https://github.com/tensorflow/benchmarks.git | |
cd benchmarks/scripts/tf_cnn_benchmarks/ |
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
#!/usr/bin/env bash | |
cd ~ | |
wget http://repo.continuum.io/archive/Anaconda2-4.0.0-Linux-x86_64.sh | |
bash Anaconda2-4.0.0-Linux-x86_64.sh -b | |
echo 'PATH="/home/ubuntu/anaconda2/bin:$PATH"' >> .bashrc | |
. .bashrc | |
jupyter notebook --generate-config |