How these plots (Performance, Training state, Regression) shows the training performance? How to figure out the training rate from these plots?

5 views (last 30 days)
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

Answers (1)

Greg Heath
Greg Heath on 13 Mar 2019
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

Community Treasure Hunt

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

Start Hunting!