필터 지우기
필터 지우기

Explain the graph error histogram with 20 bins in neural network. what is bins?

조회 수: 17 (최근 30일)
How can we explain the graph error histogram with 20 bins in neural network. what are bins?

채택된 답변

Ameer Hamza
Ameer Hamza 2018년 5월 19일
Bins are the number of vertical bars you are observing on the graph. The total error from neural network ranges from -0.2222 (leftmost bin) to 0.1968 (rightmost bin). This error range is divided into 20 smaller bins, so each bin has a width of
(0.1968-(-0.2222))/20 = 0.02095.
Each vertical bar represents the number of samples from your dataset, which lies in a particular bin. For example, at the mid of your graph, you have a bin corresponding to the error of -0.00166 and the height of that bin for validation dataset is 10. It means that 10 samples from you validation dataset have an error lies in the following range.
(-0.00166 - 0.02095/2 , -0.00166 + 0.02095/2)
(-0.012135, 0.008815) < the range of the bin corrosponding to -0.00166
Similarly, for other bins, you can interpret the result.
  댓글 수: 6
Yu Hsiang Lin
Yu Hsiang Lin 2019년 10월 31일
Are the errors in terms of prediction minus real data? or are the errors some factor of mean square error?

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Data Distribution Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by