딥러닝 framework Theano 설치

패턴인식 & 기계학습 2015. 9. 21. 21:35

reference : http://deeplearning.net/software/theano/install_ubuntu.html#install-ubuntu


For Ubuntu 11.10 through 14.04:

sudo apt-get install python-numpy python-scipy python-dev python-pip python-nose g++ libopenblas-dev git
sudo pip install Theano



If you would like, instead, to install the bleeding edge Theano (from github) such that you can edit and contribute to Theano, replace the pip install Theano command with:

git clone git://github.com/Theano/Theano.git
cd Theano
python setup.py develop --user
cd ..


Updating Theano

If you followed these installation instructions, you can execute this command to update only Theano:

sudo pip install --upgrade --no-deps theano

If you want to also installed NumPy/SciPy with pip instead of the system package, you can run this:

sudo pip install --upgrade theano


'패턴인식 & 기계학습' 카테고리의 다른 글

Jaccard similarity 계산  (0) 2015.10.02
Deep Learning 두번째 세미나  (0) 2015.09.29
에이다부스트(adaboost)  (0) 2015.02.27
k-means clustering  (0) 2015.02.27
딥러닝 Deep Learning  (0) 2015.02.27