[theano]安装-python theano cuda

I want to learning deep learning, so config cuda is a essential step. luckily it is very easy in Ubuntu

install theano+cuda in ubuntu

1. install theano

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

b) sudo pip install Theano

2. install cuda

a) sudo apt install nvidia-331

If it is successful, we can test it with

$dkms status

If you see the response like nvidia-331, 331.38, 3.13.0-24-generic, x86_64: installed, congratulations.

b) sudo apt install nvidia-cuda-toolkit

c) Reboot your machine

d)test with

import theano
theano.test()

If you see something like Using gpu device 0: GeForce GT 740M,OK

e) config

sudo vim ~/.theanorc

[global]
floatX = float32
device = gpu

OK We can enjoy the gpu.

reference

ubuntu下快速安装theano

install python cude in ubuntu

时间: 2024-10-21 13:21:49

[theano]安装-python theano cuda的相关文章

在ubuntu安装python, theano, keras , Spearmint, Mongodb

系统配置: Ubuntu 14 (其他系统也差不多如下操作) 1. 通过anaconda安装 python 地址: https://www.continuum.io/downloads#linux 2. 安装 theano [email protected]:~/Downloads$ pip install theano 3. 安装 keras [email protected]:~/Downloads$ pip install keras 4. 安装 Spearmint [email prot

Python Theano 一键安装

Download Anaconda Anaconda is a completely free Python distribution (including for commercial use and redistribution). It includes over 195 of the most popular Python packages for science, math, engineering, data analysis. 下载地址 : http://continuum.io/

paper 52 :windows7环境下theano安装

要做卷积神经网络的一些东西,所以要装theano,网上很多Theano安装教程版本较老,而各安装包更新很快,参考价值有限.走了很多弯路才装好,把这个过程记录下来,希望对大家有帮助~ ~ 我的配置:win7,32位(64和32位安装步骤没差,下安装包版本有差而已),vs2012 首先推荐一篇英文安装指南,写的十分详细,很多安装指南都是参考的这篇.不过因为这篇里存在着一些冗余成分,个人酌情参考,不过遇到难题时可以看看:http://deeplearning.net/software/theano/i

Anaconda2+Theano 安装过程中的所有的坑。。。

写在前面的废话 上次搞theano安装还是一年多以前..anaconda才出到1.4,当时的AnacondaCE,直接安装完基本上theano啥的都一套成功.. 今天换了个电脑,重装anaconda,最新版是anaconda2,发现最新版有各种问题... 下面吧安装步骤 和 所有的坑写一下.... ============================================================================ 首先把步骤说一下: 1.安装anaconda2

windows10 环境下theano安装

前言:我用的是 Anaconda2 安装python 1. 在Anaconda prompt中输入 conda install mingw libpython 2. 添加环境变量 C:\Anaconda2\MinGW\bin C:\Anaconda2\MinGW\x86_64-w64-mingw32\lib 3. 在Anaconda prompt中输入 pip install theano

Theano安装

Windows下安装Theanopip install theano报错,安装Scipy报错,如截图. 搜了下no lapack/blas resources foundhttp://stackoverflow.com/questions/28190534/windows-scipy-install-no-lapack-blas-resources-found 给出解决方案然后从网上下载scipy wheel packages,重新安装scipy成功最后pip install theano就直接

Python Theano ValueError: y_i value out of bounds

参考 https://groups.google.com/forum/#!topic/theano-users/tY3fNAPYd9k 这个问题是由于outs的数量没有设置对. 里面写到 “except that you should specify "n_out=6", because there are 6 different target classes (numbered from 0 to 5 inclusively). ” 也就是说n_out设置为6的话,Test_Y中的l

Python Theano TypeError: Cannot convert Type TensorType(float64, vector) (of Variable Subtensor{int64:int64:}.0) into Type TensorType(float64, matrix)

参考: https://groups.google.com/forum/#!topic/theano-users/teA-07wOFpE 这个问题出现的原因是,我在读文件的时候,应该Train_X读成matrix(rows * dimensions),Train_Y读成vector(因为只有label一维) 因为才接触python第一天,所以误以为column=1的matrix就是vector(汗汗汗!) 话不多说,直接贴代码: train_X_matrix = numpy.empty((tra

window10上安装python+CUDA+CuDNN+TensorFlow

软件 版本 Window10 X64 python 3.6.4(64位) CUDA CUDA Toolkit 9.0 (Sept 2017) CuDNN cuDNN v7.0.5 (Dec 5, 2017), for CUDA 9.0 以上版本测试通过. 安装步骤: 1.安装python,记得要勾选pip. 2.检测是否支持CUDA. NVIDIA官网查询,具体见:https://developer.nvidia.com/cuda-gpus,就可以知道是否可以使用带GPU支持的TensorFlo