【发布时间】:2016-05-16 21:33:27
【问题描述】:
如何在我的电脑上运行this example?我没有 Nvidia 显卡,所以我不能在 Matlab 中使用 Cuda。
我需要用 Matlab 来做,因为我一半的代码是用 Matlab 编写的,所有变量都是 Matlab 格式。
我的电脑有 ATI Radeon HD 4530 显卡。
我读了this page,但仍然难以理解哪个合适。
更新 1:我想训练一个用于图像分类的深度神经网络。类似于this example的任务。
Update2:当我运行 Update1 中提到的代码时,出现以下错误:
There is a problem with the CUDA driver or with this GPU device. Be sure that you have a supported GPU and that the
latest driver is installed.
Error in nnet.internal.cnn.SeriesNetwork/activations (line 48)
output = gpuArray(data);
Error in SeriesNetwork/activations (line 269)
YChannelFormat = predictNetwork.activations(X, layerID);
Error in DeepLearningImageClassificationExample (line 262)
trainingFeatures = activations(convnet, trainingSet, featureLayer, ...
Caused by:
The CUDA driver could not be loaded. The library name used was 'nvcuda.dll'. The error was:
The specified module could not be found.
【问题讨论】:
-
我确信可以做到,但我不明白你想做什么。你打算用什么图书馆?它支持 Open CL 吗?你需要GPU加速吗?只能在 CPU 上运行它吗?
-
我想训练一个用于图像分类的深度神经网络。与此示例类似的任务:it.mathworks.com/help/nnet/examples/…
-
我没有想到任何特定的库,我只是想让它在 Matlab 中运行。我不需要 GPU 加速(但如果可以的话会很好:-))
-
我把链接改成了其他更合适的matlab例子
-
按照建议,我问了关于单独运行代码的问题:stackoverflow.com/questions/37310280/…
标签: matlab deep-learning ati