Borrar filtros
Borrar filtros

Help with single GPU computing for training neural networks

2 visualizaciones (últimos 30 días)
Mircea Stoica
Mircea Stoica el 3 de Oct. de 2012
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 comentario
Mark Hudson Beale
Mark Hudson Beale el 26 de Ag. de 2013
Editada: Mark Hudson Beale el 26 de Ag. de 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

Iniciar sesión para comentar.

Respuestas (1)

moustafa
moustafa el 3 de Oct. de 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 comentarios
Xiangming
Xiangming el 23 de Ag. de 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 el 26 de Ag. de 2013
Although an input delay of zero is allowable, a feedback delay of zero is not allowed.
Hope this helps.
Greg

Iniciar sesión para comentar.

Community Treasure Hunt

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

Start Hunting!

Translated by