How are the number of neurons in the output layers chosen?
1 次查看(过去 30 天)
显示 更早的评论
I discovered that after choosing the number of neurons in the hidden layer, the network automatically sets the number of output neurons. Whats the intuition behind it?
2 个评论
回答(2 个)
Greg Heath
2017-9-17
[ I N ] = size(input)
[ O N ] = size(target)
I-H-O = size of a single layer NN
You (lucky dog) have the extreme pleasure of either
setting H OR accepting the default H=10.
Hope this helps.
Thank you for accepting my exceptional answer
Greg
0 个评论
Osama Tabbakh
2019-5-1
I discovered why Matlab does that. I will explain it.
Matlab tried to make the samples easier to train, that why he deletes the values of the vector, which are either zero or not important to train. But you get at the end, what you would have.
In the attachment, you see that I have in the output vector 60 components but the last 20 are just zeros, what why he deletes them from the output layer and put it back in the output.
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!