Is the neural network generated by fitnet function fully conected?
1 次查看(过去 30 天)
显示 更早的评论
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:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/350651/image.png)
0 个评论
采纳的回答
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 :
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Sequence and Numeric Feature Data Workflows 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!