您的位置:首页 > 编程语言 > MATLAB

Install and Compile MatConvNet: CNNs for MATLAB --- Deep Learning framework

2017-04-18 10:30 543 查看
Install and Compile MatConvNet: CNNs for MATLAB --- Deep Learning framework

2017-04-18 10:19:35

If you want to use matlab convnet, you just install according to the following tutorials:

1. Download and unzip the original source file from: http://www.vlfeat.org/matconvnet/
2. Then, install and compile this file:

  > cd <MatConvNet>

  > addpath matlab

  > vl_compilenn

3. If you want to use GPU, you need to compile with :

  > vl_compilenn('enableGpu', true, 'cudaRoot', '/usr/local/cuda-8.0', 'cudaMethod', 'nvcc')

4. then test if you have install it successfully.

  > vl_testnn('gpu', true)

Useful Tips:

1. Do not use the 1.0-beta20 , because it may contain BUG ! I encounter this error with this version.

  then, I changed into 1.0-beta24 , everything become easy ... you know ...
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐