How can calculate ( MSE , NMSE , Correlation Coefficient ) for the output result of neural network ?
38 ビュー (過去 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 件のコメント
回答 (1 件)
masoud sistaninejad
2021 年 8 月 4 日
編集済み: 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)));
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Deep Learning Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!