MultiLayer Neural Network with inputs forwarded to each Layer

1 view (last 30 days)
Hello,
I would like to implement a MultiLayer Neural Network with the following architecture
Is it possible using the neural network toolbox?
Thanks in advance

Accepted Answer

JESUS DAVID ARIZA ROYETH
JESUS DAVID ARIZA ROYETH on 16 Apr 2018

You can do this by code in the following way:

trainFcn = 'trainlm';  % Levenberg-Marquardt backpropagation.
hiddenLayerSize = repmat(10,1,10);
net = fitnet(hiddenLayerSize,trainFcn);
net.inputConnect=true(11,1);
view(net)

More Answers (0)

Categories

Find more on Sequence and Numeric Feature Data Workflows 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!