필터 지우기
필터 지우기

Setting weight and bias values in custom neural network

조회 수: 5 (최근 30일)
Ken Kueh
Ken Kueh 2012년 10월 23일
댓글: Qinzhuo 2022년 4월 23일
Hi all,
How to set value for weights and biases in a custom neural network?
Say: net=network;
net.numInputs=2;
net.inputs{1}.size=2;
net.inputs{2}.size=1;
net.numLayers=2;
net.layers{1}.size=1;
net.layers{2}.size=1;
net.inputConnect(1)=1;
net.inputConnect(1,2)=1;
net.layerConnect(2,1)=1;
net.biasConnect(1)=1;
net.biasConnect(2)=1;
net.biases{1}.learnFcn='learngdm';
net.biases{1}.initFcn='initzero';
net.biases{2}.learnFcn='learngdm';
net.biases{2}.initFcn='initzero';
net.outputConnect(2)=1;
net.layers{1}.transferFcn='tansig';
net.layers{2}.transferFcn = 'purelin';
net.inputweights{1}.initFcn='initzero';
net.inputweights{1}.learnFcn='learngdm';
net.inputweights{2}.initFcn='initzero';
net.inputweights{2}.learnFcn='learngdm';
now i want: bias on layer 1 =0.9; bias on layer 2 =0.7; input 1 weight = 1.1; input 2 weight = 0.9; layer 1 weight = 1.3; layer 2 weight = 1;
how should i configure it?
thanks you

답변 (1개)

Sachin Ganjare
Sachin Ganjare 2012년 10월 23일
편집: Sachin Ganjare 2012년 10월 23일
You can use 'setwb' or 'separatewb' command. Refer link below:
Hope it helps!!!
  댓글 수: 2
Ken Kueh
Ken Kueh 2012년 10월 24일
Thank you. But i want to set individual value to weight and bias.
Qinzhuo
Qinzhuo 2022년 4월 23일
net.IW
net.LW
net.b

댓글을 달려면 로그인하십시오.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by