Info
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
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 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
Modelling using neural networks
0 comentarios
Respuestas (1)
  Greg Heath
      
      
 el 3 de Jun. de 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 comentarios
La pregunta está cerrada.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!