Can anyone help to interpret these neural network graphs?

14 次查看(过去 30 天)
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.
regrssionnow.jpg
perfornnow.jpg
  4 个评论
BN
BN 2019-12-21
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
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.
"
Best Regards,
Behzad

请先登录,再进行评论。

回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Analysis of Variance and Covariance 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by