How can I get a value of Training RMSE of the LSTM training?
8 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Nazila Pourhajy
il 16 Ott 2021
Commentato: Nazila Pourhajy
il 23 Nov 2021
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.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/769011/image.jpeg)
And I have another question. Why some values of ValidationRMSE is NaN?
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/769016/image.jpeg)
0 Commenti
Risposta accettata
Niccolò Dal Santo
il 11 Nov 2021
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.
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Text Analytics Toolbox in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!