How can I get the values for initial and other steps of the biases and weights (except the final step which network stops)?
조회 수: 1 (최근 30일)
이전 댓글 표시
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
답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!