How can I get the values for initial and other steps of the biases and weights (except the final step which network stops)?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I used net = init(net); net.initFcn = 'initlay'; net.layers{1}.initFcn= 'initnw'; net.layers{1}.initFcn= 'initnw'; net.inputWeights{1,1}.initFcn ='randnr'; net.layerWeights{2,1}.initFcn = 'randnr'; net.biases{1}.initFcn = 'randnr'; for initialization of the wights and biases. I can get the final values of the biases and weights by inputweight=net.iw{1,1}; layerweight=net.lw{2,1}; biasinput=net.b{1,1}; biaslayer=net.b{2,1}; but I do not know how I can get the values for initial and other steps of the biases and weights (not final steps)before the network stops? I was wondering if some one can help me?
0 commentaires
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!