theano+win8.1安装
1、Anaconda
下载Anaconda2-4.1.1-Windows-x86_64.exe 我下的是python2.7 version
安装Anaconda
2、GCC
在Anaconda Prompt中输入conda install mingw libpython。
在环境变量path后面添加 Anaconda目录\MinGW\bin;Anaconda目录\MinGW\x86_64-w64-mingw32\lib;
3、cuda
我下的是cuda7.5。大家可以用更老的版本。
cuda的版本和cudnn的版本是要相对应的。这里装了cuda7.5,就只能装相对应的cudnn。会有Warning:Your cuDNN version is more recent than the one Theano officially supports. If you see any problems, try updating Theano or downgrading cuDNN to version 5。
4.cudnn
我下的是cudnn-7.5-windows7-x64-v5.1.zip
解压后得到三个文件夹。将三个文件夹中的内容复制到cuda的对应文件夹中。
5、theano
在Anaconda Prompt中输入conda install -c conda-forge theano=0.8.2
6、在用户目录下(比如C:\Users\fu\
)新建一个文本文件,命名为.theanorc.txt
,然后如下编辑保存。注意将目录替换成自己的目录。
[global] device = gpu floatX=float32 [bias] Idflags= [gcc] cxxflags= -II:\APPs\install\Anaconda2\MinGW [nvcc] flags=-LI:\APPs\install\Anaconda2\libs compiler_bindir=I:\APPs\install\vs2012\VC\bin [lib] cnmem = 0.75 [dnn] enabled = True
7、测试 import theano。输出:Using gpu device 0: GeForce GTX 750 Ti (CNMeM is enabled with initial size: 75.0% of memory, cuDNN 5103)
——————
在win10 下安装的theano的时候出现以下错误
ImportError: cannot import name add_newdocs
解决方法:conda install numpy (来自stackoverflow )
————
keras安装中文教程https://keras-cn.readthedocs.io/en/latest/getting_started/keras_windows/
anaconda 安装keras conda install -c conda-forge keras=1.0.7