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

40 次查看(过去 30 天)
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 个评论
Aya Ahmed
Aya Ahmed 2020-8-20
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

请先登录,再进行评论。

回答(1 个)

masoud sistaninejad
编辑:masoud sistaninejad 2021-8-4
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)));

类别

Help CenterFile Exchange 中查找有关 Pattern Recognition and Classification 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by