Help with single GPU computing for training neural networks

1 view (last 30 days)
Hello,
I am trying to speed up training of a time-delayed neural network by means of GPU computing. My code works fine with no parallel processing (so no errors there).
I have followed the instructions on single GPU computing from here and here and when adding the extra name-value pair 'useGpu','yes' I receive the following error:
Error using trainlm (line 105)
Layer states Ai is not a matrix or cell array.
Error in network/train (line 106)
[net,tr] = feval(net.trainFcn,net,X,T,Xi,Ai,EW,net.trainParam);
Error in test_nn (line 28)
net2 = train(net,Xs,Ts,Xi,'useGPU','yes');
I did not find any other resources on this so any help would be kindly appreciated.
  1 Comment
Mark Hudson Beale
Mark Hudson Beale on 26 Aug 2013
Edited: Mark Hudson Beale on 26 Aug 2013
Sorry to hear about the problem. Could you give some more information such as:
1) The release of MATLAB you are using? It will be returned by "ver". Example: R2013a 2) The script prior to the call to train? If you are training with time series then data dimensions, call to preparets, etc. might shed light on what is causing the error. Thanks

Sign in to comment.

Answers (1)

moustafa
moustafa on 3 Oct 2012
i have the same problem ... :(
but i think, the reason is, as shown in the example there, the trained network is a simple feed forward network while you (and me) are trying to train NAR(X) network which need the previous time step.
so, in other words, the problem is, can NAR(X) network be trained using parallel computing toolbox??
  3 Comments
Xiangming
Xiangming on 23 Aug 2013
Hi Mircea,
Very goog explaination. But when I set the feedbackdelays to be zeros, errors occurr.
% code
min feedbackdely is zero causing zero-loop delays...
end
So I'm wondering ----can NAR(X) network be trained using parallel computing toolbox??
Greg Heath
Greg Heath on 26 Aug 2013
Although an input delay of zero is allowable, a feedback delay of zero is not allowed.
Hope this helps.
Greg

Sign in to comment.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!