MultiLayer Neural Network with inputs forwarded to each Layer

1 回表示 (過去 30 日間)
Manos Kav
Manos Kav 2018 年 4 月 13 日
コメント済み: Greg Heath 2018 年 4 月 16 日
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
JESUS DAVID ARIZA ROYETH 2018 年 4 月 16 日

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)
  1 件のコメント
Greg Heath
Greg Heath 2018 年 4 月 16 日
Why do you need/want this topology???
Greg

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSequence and Numeric Feature Data Workflows についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by