How can I get MSE and normalized MSE both as performance function when fitting Feed forward neural network?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Avanthi Saumyamala
el 23 de Oct. de 2018
Comentada: Greg Heath
el 5 de Nov. de 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 comentarios
Respuesta aceptada
Greg Heath
el 26 de Oct. de 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 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Deep Learning Toolbox en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!