WHICH IS THE NARNET ACTIVATION FUNCTION IN THE HIDDEN LAYERS?

1 回表示 (過去 30 日間)
Jorge Rodriguez
Jorge Rodriguez 2020 年 5 月 14 日
コメント済み: Jorge Rodriguez 2020 年 5 月 27 日
Hello, I would like to know which is the activation function used by Narnet?
I think the one used is the tansigmoid (y(i)=2/(1+exp(-2*y(i-1)))-1 ) and no the sigmoid (y(i)=(1/(1+exp(-0.9*y(i-1))))) as I thought but I would like to confirm that.
Thank you for your time.

回答 (1 件)

Asvin Kumar
Asvin Kumar 2020 年 5 月 19 日
編集済み: Asvin Kumar 2020 年 5 月 19 日
The default activation in a Hidden layer created by narnet is tansig. Quick way to check this is by running:
net = narnet;
net.layers{1}.transferFcn
This can be changed to other available activations which you can check by typing:
help nntransfer
The answer at this location might be useful too.

Community Treasure Hunt

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

Start Hunting!

Translated by