How to find sensitivity of feedforward net in matlab?

조회 수: 1 (최근 30일)
Andualem alemu
Andualem alemu 2015년 4월 10일
댓글: Greg Heath 2015년 4월 24일
I am trying to find the sensitivity of a feedforward neural network. For example, to find the sensitivity of the following feedforwardnet
[x , t] = house_dataset;
net = feedforwardnet(10);
net = train(net, x, t);
I used the formula
s = b2 + Lw * tanh(b1 + Iw * x)
But it has the following error
Error using + Matrix dimensions must agree.
I am trying to find another solution. Please Help me on how to find sensitivity of a neural network Feedforward net.
  댓글 수: 1
Greg Heath
Greg Heath 2015년 4월 23일
Sensitivity to what?
The above equation has the right form however, you have to make the dimensions of the biases compatible using the function repmat.
Use the command
whos
to make sure dimensions are compatible.
Hope this helps.
Greg

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

채택된 답변

Greg Heath
Greg Heath 2015년 4월 20일
You forgot to take into account that the input is 13 dimensional
  댓글 수: 2
Andualem alemu
Andualem alemu 2015년 4월 22일
편집: Andualem alemu 2015년 4월 22일
so, would you please help me on how to find the sensitivity of feedforwardnet for this 13 dimensional data?
Greg Heath
Greg Heath 2015년 4월 24일
You didn't answer my question.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Sequence and Numeric Feature Data Workflows에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by