Skip to content

Commit

Permalink
added tensorflow (cpu) and keras
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesollion committed Jan 16, 2016
1 parent e5a76b2 commit 3fb4959
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions scripts/install-deeplearning-libraries.sh
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,19 @@ else
fi
fi

# Keras (will be using theano by default)
if [ ! -d "keras" ]; then
git clone https://github.com/fchollet/keras.git
(cd keras && python setup.py install)
else
if [ "$1" == "reset" ]; then
(cd keras && git reset --hard && git checkout master && git pull --rebase $REMOTE master && python setup.py install)
fi
fi

# Tensorflow (cpu mode only, GPU not officially supported on AWS - CUDA 3.0 architecture)
pip install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.5.0-cp27-none-linux_x86_64.whl

# Torch
if [ ! -d "torch" ]; then
curl -sk https://raw.githubusercontent.com/torch/ezinstall/master/install-deps | bash
Expand Down

0 comments on commit 3fb4959

Please sign in to comment.