How can I get MSE and normalized MSE both as performance function when fitting Feed forward neural network?
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Avanthi Saumyamala
le 23 Oct 2018
Commenté : Greg Heath
le 5 Nov 2018
Im fitting a feedforward neural network with 8 input parameters and 1 output parameter.i want to use MSE and normalized MSE both to measure the performance.
0 commentaires
Réponse acceptée
Greg Heath
le 26 Oct 2018
Divide MSE by the mean variance of the target rows (MSE of the constant output model)
MSEref = mean(var(target',1))
NMSE = mse(target-output)/MSEref
Rsquare = 1 - NMSE
Hope this helps.
Thank you for formally accepting my answer
Greg
2 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Deep Learning Toolbox dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!