每日积累(20161221-day-21)(ubuntu16.04挂载exfat格式磁盘 py-faster-caffe&cudnn5编译 axel下载使用)

来源:互联网 发布:软件开发个人简历 编辑:程序博客网 时间:2024/05/16 06:51

每日积累(20161221-day-21)(ubuntu16.04挂载exfat格式磁盘  py-faster-caffe& cudnn5编译)

1

ubuntu 默认不支持exfat磁盘

$sudo apt-get install exfat-fuse

就可以了

 

2

py-faster-caffe cudnn5编译

 py-faster-caffe 默认是支持cudnn4的

修改为支持cudnn5,入大神所示:

$cd caffe-fast-rcnn  $git remote add caffe https://github.com/BVLC/caffe.git  $git fetch caffe  $git merge caffe/master

并且

Remove self_.attr("phase") = static_cast<int>(this->phase_); frominclude/caffe/layers/python_layer.hpp after merging.

如果遇到问题:


fatal: unable to auto-detect email address
那就按提示把你的github邮箱和用户名设置一下 (user.email 和 user.name 设置一下)

$git config --global user.email xxx@xxx.com$git config --global user.name xxx

3

axel 下载使用

$axel http://tutorial.caffe.berkeleyvision.org/caffe-cvpr15-detection.pdf



0 0