MATLAB之BP神经网络查看训练好的权值、阈值的方法

训练好的权值、阈值的输出方法是:
输入到隐层权值: w1=net.iw{1,1}
隐层阈值: theta1=net.b{1}
隐层到输出层权值: w2=net.lw{2,1}
输出层阈值: theta2=net.b{2}

猜你喜欢

转载自blog.csdn.net/qq1922631820/article/details/85220809