How to find sensitivity of feedforward net in matlab?

1 次查看(过去 30 天)
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?

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 PHY Components 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by