Question regarding this link: https://ww​w.mathwork​s.com/matl​abcentral/​answers/49​5218-what-​is-the-err​or-histogr​am-in-neur​al-network​-matlab

조회 수: 1 (최근 30일)
Hello,
I am using FFNN for modeling my data, it is producing histogram automatically. I would like to get the data based on which this histograam is generating this data.
I am sharing a link regarding which I am asking about the data. https://www.mathworks.com/matlabcentral/answers/495218-what-is-the-error-histogram-in-neural-network-matlab. I do need response as soon as possible.
Thanks.

답변 (1개)

Aditya Patil
Aditya Patil 2021년 4월 6일
The histogram is created from the error in the output.
error = targets - outputs;
number_of_bins = 10;
ploterrhist(error,'bins',number_of_bins);
See the Plot the Error Histogram page for details.

카테고리

Help CenterFile Exchange에서 Histograms에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by