フィルターのクリア

Evaluating neural network prediction formulas

1 回表示 (過去 30 日間)
Matthew Clark
Matthew Clark 2019 年 3 月 23 日
編集済み: Matthew Clark 2019 年 3 月 23 日
Hi there I need some help,, I am evaluating my neural network prediction with MAPE,MAE,MSE,RMSE methods are these formulas below correct ? What values I should use to evaluate performance NORMALIZED or DENORMALIZED data ?
r^2 is 0.94, MSE is very high. Suggestions ?
%where DENORM(obtained DENORMALIZED data after NN prediction, elLoad-original data(but not normalized))
%for MAE
err=denorm-elLoad;
ae=abs(e);
maeErr=mean(ae);
%for MAPE
mapeErr=mean(abs(e/elLoad));
%for MSE
mseErr=mean(denorm-elLoad).^2;
%for RMSE
mseErr=sqrt(mean(denorm-elLoad).^2);

回答 (0 件)

カテゴリ

Help Center および File ExchangeDeep Learning Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by