フィルターのクリア

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 日間)
Precious Eze
Precious Eze 2017 年 6 月 3 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
Modelling using neural networks

回答 (1 件)

Greg Heath
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

この質問は閉じられています。

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by