MultiLayer Neural Network with inputs forwarded to each Layer

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

 채택된 답변

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개)

카테고리

도움말 센터File Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기

질문:

2018년 4월 13일

댓글:

2018년 4월 16일

Community Treasure Hunt

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

Start Hunting!

Translated by