Info
此问题已关闭。 请重新打开它进行编辑或回答。
I just modeled some data involving two inputs and two targets using neural networks. How do i get the MAD and RMSE of the data?
1 次查看(过去 30 天)
显示 更早的评论
回答(1 个)
Greg Heath
2017-6-3
See the help and doc documentation on how to obtain the output.
help fitnet
doc fitnet
Then
error = target-output;
RMSE = sqrt(mse(error))
MAD = mean(abs(error))
Hope this helps.
Thank you for formally accepting my answer
Greg
0 个评论
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!