Can anyone help to interpret these neural network graphs?
5 views (last 30 days)
Show older comments
I've been trying a MLP with 2 input variables obtained from another model (It's a hybrid model with ANN) and one output. I've got the following graphs but I don't know how to interpret them and decide if my model is correct. MSE doesn't decrease on testing data. Does that mean my model is not good? Does my regression plot look okay?
Also, should the testing line always be above the validation line in the performance plot or can it be below?
Someone help please! Thank you.
4 Comments
BN
on 21 Dec 2019
So in general, you have some data as inputs. the model will use these data for train, validation, and test. after you achieve desire network and you certain about network accuracy, you can use this net to produce forecasts using new inputs.
it should be something like this for arbitrary X
Y = net(X); %use trained ANN to produce forecast
please look at: https://www.mathworks.com/matlabcentral/answers/377267-how-to-predict-from-a-trained-neural-network
about RMSE: in general yes lower is better. but please read this reference:
"There is no absolute good or bad threshold, however, you can define it based on your DV. For a datum which ranges from 0 to 1000, an RMSE of 0.7 is small, but if the range goes from 0 to 1, it is not that small anymore. However, although the smaller the RMSE, the better, you can make theoretical claims on levels of the RMSE by knowing what is expected from your DV in your field of research.
You can't fix a particular threshold value for RMSE. We have to look at the comparison of RMSE of both test and train datasets. If your model is good then your RMSE of test data is quite similar to the train dataset. Otherwise below conditions met.
RMSE of test > RMSE of train => OVER FITTING of the data.
RMSE of test < RMSE of train => UNDER FITTING of the data.
"
you can see the reference here: https://stats.stackexchange.com/questions/56302/what-are-good-rmse-values
Best Regards,
Behzad
Answers (0)
See Also
Categories
Find more on Sequence and Numeric Feature Data Workflows in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!