How can I get MSE and normalized MSE both as performance function when fitting Feed forward neural network?
3 次查看(过去 30 天)
显示 更早的评论
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 个评论
采纳的回答
Greg Heath
2018-10-26
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
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Deep Learning Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!