How can calculate ( MSE , NMSE , Correlation Coefficient ) for the output result of neural network ?
Mostrar comentarios más antiguos
I want to calculate ( Mean Square Error , Normalized Mean Square Error , Correlation Coefficient ) for the output result of neural network using matlab code ...
the Data are a group of different images, its features were extracted using PCA and then entered into the Nueral Network.
How can I know about system performance ?
PLZ any help .. thanks
4 comentarios
yuval
el 17 de Ag. de 2020
You should give some more information on what you're trying to do, including relevant bits of your code, because I don't see a way to help otherwise.
Greg Heath
el 17 de Ag. de 2020
In particular, you have not defined an output!
Greg
Aya Ahmed
el 20 de Ag. de 2020
Aya Ahmed
el 20 de Ag. de 2020
Respuestas (1)
masoud sistaninejad
el 4 de Ag. de 2021
Editada: masoud sistaninejad
el 4 de Ag. de 2021
0 votos
inputs = x_test ; % your test data inputs
targets = y_test ; % your test data targets
P = net(inputs);
Error = targets - P;
MSE = mse(targets,P);
NMSE = (mean(error.^2)) / (mean(var(targets',1)));
Categorías
Más información sobre Deep Learning Toolbox en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
