Useful Links
About system
初始安装系统的一些主要链接
Ubuntu 16.04
ubuntu下matlab启动报错java.lang.runtime.Exception**********************, 则执行这个命令:
sudo chmod -R a+rw ~/.matlab
About Machine Learning
-
tensorflow
主要尽量配置cuda8以及对应的cudnn6 2017/11/16 - tflearn
Demo Links
主要在配置GPU版本的tensorflow可能会遇到一些麻烦.下面基于配置给予相关链接
属性 | 值 |
---|---|
系统 | Ubuntu 16.04 |
GPU | 1080p |
cuda | 8.0 |
libcudnn | 6.0 |
其中显卡驱动程序使用
NVIDIA-Linux-x86_64-375.26
,直接从官网下载.
cuda
使用与375
对应的版本,名为NVIDIA-Linux-x86_64-375.26
,可以从这里下载对应的
cudnn
版本为6
,版本名为libcudnn6_6.0.21-1+cuda8.0_amd64
,通过这里安装.下一步就比较easy了,通过下面方式安装
tensorflow
以及tflearn
:sudo pip3 install tensorflow-gpu # for python3 sudo pip install tensorflow # for python2 sudo pip install tflearn # for python3 sudo pip3 install tflearn # for python2
安装mxnet
sudo pip3 install mxnet-cu80==1.0.0
网友评论