Is the neural network generated by fitnet function fully conected?

3 ビュー (過去 30 日間)
Ramiro Falcon Novoa
Ramiro Falcon Novoa 2020 年 8 月 24 日
Hi all,
I am using the 'fitnet' function to generate a 2 layers neural network for fitting applications (3 neurons the 1st layer and 2 neurons the 2nd layer).
So my question is:
Are all the neurons of the 1st layer connected to all the neurons of the 2nd layer? In other words, is this neural network fully connected?
Code:
net = fitnet([3,2]);
view(net)
Neural network generated:

採用された回答

Shubham Rawat
Shubham Rawat 2020 年 8 月 27 日
編集済み: Shubham Rawat 2020 年 8 月 27 日
Hi Ramiro,
Yes, the neurons of first layer are connected with the second layers. You may run this command to check the weight matrices of weights going to layers from other layers.
net.LW
You may also refer to the different object properties of Neural Networks :
  1 件のコメント
Ramiro Falcon Novoa
Ramiro Falcon Novoa 2020 年 8 月 31 日
@Shubham Rawat
Thank you very much.
These is exactly the information I wass missing.

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

その他の回答 (0 件)

製品


リリース

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by