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?

조회 수: 3 (최근 30일)
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