how to indicate different transferFcn in a same layer when using feedforwardnet

9 views (last 30 days)
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

Answers (1)

Krishna
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.

Categories

Find more on Deep Learning Toolbox in Help Center and File Exchange

Products


Release

R2021b

Community Treasure Hunt

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

Start Hunting!