MATLAB: Neural Network Weights and Bias

Deep Learning Toolboxneural networkweights and bias

I just want to ask on how to determine the Weights and Bias in Neural Network? I am using Image Processing with Neural Network. Can I compute the weights and bias? Pls help me for my THESIS! thanks 🙂

Best Answer

IW =net.IW{1,1}
b1 = net.b{1}
LW =net.LW{2,1}
b2 = net.b{2}
Hope this helps.
Thank you for formally accepting my answer
Greg