how to indicate different transferFcn in a same layer when using feedforwardnet
9 views (last 30 days)
Show older comments
net = feedforwardnet([6 6 2]);
net.trainFcn='trainbr';
net.layers{1}.transferFcn='logsig';
net.layers{2}.transferFcn='tansig';
net.layers{3}.transferFcn='logsig';
net.layers{4}.transferFcn='tansig';
I know how to indicate transferFcn between two different layers.
how to indicate different transferFcn in a same layer but two different neuron
0 Comments
Answers (1)
Krishna
on 16 Nov 2023
Edited: Krishna
on 17 Nov 2023
Hello,
Based on your question, it seems like you want to use different activation functions for different neurons within the same hidden layer. Unfortunately, this is not possible when using the 'feedforwardnet.' Each hidden layer can only have one activation function.
By setting,
net.layers{1}.transferFcn = 'tansig'
you have assigned the tan sigmoid function to the neurons in the first hidden layer and so on.
I hope this explanation clarifies the situation for you.
0 Comments
See Also
Categories
Find more on Deep Learning Toolbox in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!