필터 지우기
필터 지우기

Is the neural network generated by fitnet function fully conected?

조회 수: 3 (최근 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:

채택된 답변

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