MultiLayer Neural Network with inputs forwarded to each Layer

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

采纳的回答

JESUS DAVID ARIZA ROYETH

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)

更多回答(0 个)

Community Treasure Hunt

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

Start Hunting!

Translated by