- The height of bar in the Bar plot means how many data points are near the bin value.
- 0.001502 is selected error value based on bin number setup in histogram function (i.e. histogram(data,20)), it can be changed if you use different bin value. You can try bin number with 50 or 100.
- 0.001502 is the closest number to 0 among those bin numbers. Because error = 0 means the ourputs are close to the target, so model performance is good if the bin bars close to zero are taller than higher error numbers.
Please explain this histogram
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hi
I'm using neural network matlab fitting tool
it's hard to understand error histogram with 20bins
what is bar means? the bar at error value 0.001502 is the best performance? if yes, please tell me why
and what is means zero error?
I attatched my graph. please reply ASAP.
Thank you.
![fds.png](https://www.mathworks.com/matlabcentral/answers/uploaded_files/253067/fds.png)
0 Commenti
Risposte (2)
Inho Kim
il 5 Dic 2019
Hi Nayoung,
Typically errors are calculated with L1 (abs(errors)) or L2 ((errors)^2) norms. Meaning that it cancels out signs from difference between target and output. The above bar graph doesn't have neither absolute or square for errors, it has negative errors which isn't typical. Nonetherless errors are close to zero meaning the output is close to target value, the NN models well.
Hope this helps you.
Best,
IK
0 Commenti
Vedere anche
Categorie
Scopri di più su Get Started with Statistics and Machine Learning Toolbox in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!