How can I get a value of Training RMSE of the LSTM training?

조회 수: 25 (최근 30일)
Nazila Pourhajy
Nazila Pourhajy 2021년 10월 16일
댓글: Nazila Pourhajy 2021년 11월 23일
Hi everyone.
I trained LSTM network for price prediction.I have info.TrainingRMSE of LSTM. But I want to get final value of RMSE for training to compare between training RMSE and testing RMSE.
How can I calculate final value of training RMSE? Please help me.Thanks.
And I have another question. Why some values of ValidationRMSE is NaN?

채택된 답변

Niccolò Dal Santo
Niccolò Dal Santo 2021년 11월 11일
Hi Nazila,
You can access the final Training and Validation RMSE from the info struct returned by trainNetwork, by accessing the last element:
>> info.TrainingRMSE(end)
Some values of the vector info.ValidationRMSE are NaN since they correspond to the iterations where the model is not evaluated on the validation dataset. You can set how often the model is evaluated on the validation dataset with the ValidationFrequency training option.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Get Started with Statistics and Machine Learning Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by