How these plots (Performance, Training state, Regression) shows the training performance? How to figure out the training rate from these plots?
조회 수: 2 (최근 30일)
이전 댓글 표시
I have trained neural network for the character recognition task. The graphs of neural network training are given below. Can someone tell me how to expalin these graphs to analyze the performance of neural network training?
Performance Plot
Training State Plot
Regression Plot
댓글 수: 0
답변 (1개)
Greg Heath
2019년 3월 13일
Training data plots are useful.
However, there is no indication of how good the net will perform on nontraining data (THE TRUE MEASURE OF GOODNESS!)
The best SINGLE measure of goodness is the ratio of mse(error) to sum(var(target',1)) for the test subset.. The latter is mse(error) for the reference: a naive constant output model
output = mean(target').
Details are available by searching
GREG NMSE
Thank you for formally accepting my answer
Greg
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Pattern Recognition and Classification에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!