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!