How can calculate ( MSE , NMSE , Correlation Coefficient ) for the output result of neural network ?

25 vues (au cours des 30 derniers jours)
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 commentaires
Aya Ahmed
Aya Ahmed le 20 Août 2020
yuval,, I want to make image classification in to three types of images
Aya Ahmed
Aya Ahmed le 20 Août 2020
Greg Heath the output is like that : -
three classes of images ,, i want to get there performance like Mean Square Error , Normalized Mean Square Error , Correlation Coefficient

Connectez-vous pour commenter.

Réponses (1)

masoud sistaninejad
masoud sistaninejad le 4 Août 2021
Modifié(e) : masoud sistaninejad le 4 Août 2021
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)));

Catégories

En savoir plus sur Deep Learning Toolbox dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by