the following code is to get neural network output in term of weights and biases for one single output how i can rewirte the code for neural network with 2 outputs

조회 수: 1 (최근 30일)
L=length(outputs);
for i=1:L
x=inputs(:,i);
y1=w1*x+b1;
y1=tansig(y1);
y22=w2*y1+b2;
y2(i)=purelin(y22);
end

답변 (1개)

Mary Abdu
Mary Abdu 2018년 12월 28일
편집: madhan ravi 2018년 12월 28일
i tried with the below code but stil not work could anyone help me please:
[r,c]=size(outputs);
for i=1:r
for j=1:c
x=inputs(:,j);
Y1=w1*in+b1;
Y1=tansig(Y1);
Y11a=w2(1,:)*Y1+b2(1,:);
Y2a(1:j)=purelin(Y11a);
Y11b=w2(2,:)*Y1+b2(2,:);
Y2b(2:j)=purelin(Y11b);
end
end

카테고리

Help CenterFile Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by