How do I see the weight and biases variables in neural networks, please show me on simple example code?
17 ビュー (過去 30 日間)
古いコメントを表示
How do I see the weight and biases variables in neural networks, please show me on simple example code?
1 件のコメント
Matthew Eicholtz
2015 年 6 月 2 日
It depends. Are you using the built-in Neural Network Toolbox or building one from scratch?
採用された回答
Matthew Eicholtz
2015 年 6 月 2 日
Copying from there, one example deals with classifying the sex of crabs.
[x,t] = crab_dataset; %load the dataset
net = patternnet(10); %create the network
[net,tr] = train(net,x,t); %train the network
Now, you can find the weights and biases by looking at net .
w1 = net.IW{1} %the input-to-hidden layer weights
w2 = net.LW{2} %the hidden-to-output layer weights
b1 = net.b{1} %the input-to-hidden layer bias
b2 = net.b{2} %the hidden-to-output layer bias
Hope this helps.
2 件のコメント
Subhadarshini Jati
2020 年 10 月 14 日
this provides only one set of weights associated to a single input. what if i need all weights associated with all inputs?
その他の回答 (2 件)
Ava harry
2019 年 9 月 10 日
How about havng 2 hidden layers? how can I extract bias and weights between them?
Gene Pennello
2022 年 2 月 25 日
https://www.mathworks.com/matlabcentral/answers/398531-how-to-manually-calculate-a-neural-network-output
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!