i created a copy of trainlm algorithm in neural network to shivlm.m with the same code of the trainlm.m. when i tried to call shivlm i get errors. can anyone help me in this regard?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Dhandapani.S
le 23 Nov 2016
Commenté : Walter Roberson
le 26 Nov 2016
the error i get when i copy the file trainlm.m and renamed the file as shivlm.
Undefined function 'nn_train_feedback' for input
arguments of type 'struct'.
Error in shivlm>train_network (line 206) nn_train_feedback('start',archNet,status);
Error in shivlm (line 64) [out1,out2] = train_network(varargin{2:end});
Error in network/train (line 329) [calcNet,tr] = trainFcn('apply',net,rawData,calcLib,calcNet,tr);
Error in cmpare (line 22) [net,pr]=train(net,Input',Target');
0 commentaires
Réponse acceptée
Walter Roberson
le 23 Nov 2016
trainlm probably uses private functions that you have not copied. You might need to copy the entire class directory.
8 commentaires
Walter Roberson
le 26 Nov 2016
Modifié(e) : Walter Roberson
le 26 Nov 2016
Later postings indicate the user is using R2012b. This matters because the Neural Network toolbox was completely rewritten between then and now, so the functions the user is having difficulty with do not exist in the current version.
Walter Roberson
le 26 Nov 2016
You need the private subdirectory, which is at
fullfile(toolboxdir('nnet'),'nnet','nntrain', 'private')
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Define Shallow Neural Network Architectures dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!