How to find the optimum number of neurons and hidden layers for ANN?
3 views (last 30 days)
Show older comments
How to find the optimum number of neurons and hidden layers for ANN?
0 Comments
Answers (2)
Ganesh
on 13 Dec 2023
I understand you are trying to train your ANN and would like to know the ideal number of neurons and hidden layers you need to use.
In Deep Learning, there is no "ideal" number for either of those parameters. The number of neurons on the input layers is equal to the number of Features in your dataset and the number of neurons on the output layer should be the number of Labels in your dataset. The other layers and neurons depends on the compelixity of your dataset.
If your dataset is small enough, you can try to automate the training by implementing different number of neurons and hidden layers. In some cases, the number of neurons follow the following number:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1567954/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1567959/image.png)
Hope this helps!
0 Comments
See Also
Categories
Find more on Neural Simulation in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!