下载地址: https://repo.continuum.io/archive/index.html
2.tensorflow安装 命令行,使用pip安装:>pip install tensorflow-gpucpu版本:
>pip install tensorflow提示pip版本较低或找不到资源,升级pip:
>python.exe -m pip install --upgrade pip安装好后测试,命令行输入:
>python
>>>import tensorflow as tf3.使用GPU加速下载cuda:https://developer.nvidia.com/cuda-downloads选择cuda8.0,windows对应版本直接安装即可下载cudnn:https://developer.nvidia.com/cudnn 选择5.1版本下载后解压lib等三个文件夹替换到cuda安装目录中。这时候tensorflow应该可以使用GPU了,测试使用gpu加速:http://blog.csdn.net/freedom098/article/details/51918825(测试代码,使用cnn对mnist分类)4.keras安装pip install keras,会带上theano一起安装,windows下默认以tensorflow为底层。keras测试代码:http://www.cnblogs.com/Mu001999/p/6221096.htmlkeras切换底层:http://blog.csdn.net/tangwenbo124/article/details/52627774?locationNum=7
5.theano配置GPU
直接在当前用户目录下(如:C:\Users\Administrator)新建一个.theanorc.txt文件,内容:[global]把nvcc中的内容换成自己的Anaconda\libs目录和vs的目录
floatX = float32
device = gpu
[nvcc]
flags=-LD:\Anaconda\libs
compiler_bindir=C:/Program Files (x86)/Microsoft Visual Studio 10.0/VC/bin
命令行下,测试:
>python
>>>import theano
>>>theano.test()