フィルターのクリア

Converting an equation into MATLAB code

1 回表示 (過去 30 日間)
NeverPerfecT
NeverPerfecT 2018 年 4 月 22 日
コメント済み: Steven Lord 2023 年 6 月 27 日
I am trying to write a code that calculates the accuracy of my network using sMAPE. The equation is depicted here:
(Y is actual value, F is forecast value, n is the amount of data)
I have written this code (I have 25 data):
e= gsubtract(output,y);
y= net(input);
accuracy = (0.08*mean(abs(e./(abs((output)+(y))))))
"output" on the code above is the target, "y" is the output (sorry for the misleading name with the actual output) Assuming I use the equation above as a reference, is this code correct?
  2 件のコメント
Walter Roberson
Walter Roberson 2018 年 4 月 22 日
We do not know. How does e relate to Y or F? How does output relate to Y or F ?
NeverPerfecT
NeverPerfecT 2018 年 4 月 23 日
Sorry about that. I edited the question, hope it clears any ambiguity.

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

採用された回答

Walter Roberson
Walter Roberson 2018 年 4 月 22 日
sMAPE = sum(abs(Y - F) ./ abs(Y + F)) * (2/length(Y))
  2 件のコメント
NeverPerfecT
NeverPerfecT 2018 年 4 月 23 日
編集済み: NeverPerfecT 2018 年 4 月 23 日
With this formula I get values that exceeds 1, is this acceptable or is there some parts I did wrong in the training process? Since based on my knowledge, sMAPE is percentage value, if the value exceeds 1, wouldn't the sMAPE exceeds 100%?
Walter Roberson
Walter Roberson 2018 年 4 月 23 日
The forecast value could be negative. That would make (Y-F) increase beyond Y, and Y+F would be less than Y. That would give you a contribution greater than 1 at that point.

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

その他の回答 (2 件)

JD Wiley
JD Wiley 2019 年 9 月 10 日
latex2img.png
  1 件のコメント
Walter Roberson
Walter Roberson 2019 年 9 月 10 日
log10(x + y.^3) ./ (y./x).^(1/4)

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


Gujju
Gujju 2023 年 6 月 27 日
Can someone please create the Matlab code for Equation (6) & (8). Those are curves but I'm getting diefferent results.
  1 件のコメント
Steven Lord
Steven Lord 2023 年 6 月 27 日
This isn't related to the original question in this discussion, so you should ask it as a separate question using the Ask link near the top of the page. When you ask that separate question, please show us the code you've written to try to solve the problem and ask a specific question about where you're having difficulty and we may be able to provide some guidance.

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

カテゴリ

Help Center および File ExchangeElectrophysiology についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by