Question regarding this link: https://www.mathworks.com/matlabcentral/answers/495218-what-is-the-error-histogram-in-neural-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.
0 件のコメント
回答 (1 件)
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);
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Histograms についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!