Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
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 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Modelling using neural networks
0 Kommentare
Antworten (1)
Greg Heath
am 3 Jun. 2017
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 Kommentare
Diese Frage ist geschlossen.
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!