フィルターのクリア

Calculation MAPE (Mean Absolute Percentage) except for some values

41 ビュー (過去 30 日間)
Perihan Bilgeç
Perihan Bilgeç 2019 年 2 月 11 日
回答済み: Luciana Reys 2021 年 5 月 10 日
Hi everyone;
I am using a function for Neural Network model. In the function as conclusion, I want to calculate MAPE values and I am using the formula above. But I have a problem that Yv vector has 0 (zero) values, as a result this MAPE value shows that 'Infinitive'. I want to calculate MAPE except for 0 (zero) values of Yv vector. For this can I update MAPE formula? Thank you very much.
MAPE= mean((abs(ye-Yv))./Yv)
Yv=Real values vector
ye=Neural Network model's estimated values
  1 件のコメント
Abdulrahman Haruna
Abdulrahman Haruna 2019 年 8 月 26 日
Dear,
You may just remove the rows where you have the zeros.
e.g.,
indexes = (Yv == 0) %Find teh places where there are zeros
Yv(indexes) = []; %remove them from Yv
Ye(indexes) = []; % remove similar points in Ye
Then you proceed ):

サインインしてコメントする。

回答 (1 件)

Luciana Reys
Luciana Reys 2021 年 5 月 10 日
Hello,
You can also use only finite numbers.
pre_MAPE = abs((ye-Yv)./Yv);
MAPE = mean(pre_MAPE(isfinite(pre_MAPE)));

カテゴリ

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