Closed leechaelim closed 3 years ago
Do you only have one time series in x
by any chance? Do you have an executable colab notebook link to let me look into the error. SMAPE cannot exceed 200 by definition.
yes..there is one time series in x
here is my colab notebook. https://colab.research.google.com/drive/1zpGWkSnq_LMuPbvAdbTfifMC90WGBcmt
In the tutorial, the error calculation was done like a picture. But it's different from the baseline_error calculation method.
(actuals - predictions).abs().mean()
SMAPE()(predictions, actuals)
1 and 2 have different results. What's right?
Thank you for your comment!
SMAPE is defined as ((y - y_hat).abs()/(y.abs() + y_hat.abs())).mean()
, so it is not surprising that 1 (MAE) is not equal to 2 (SMAPE).
thank you!!!! I solved this issue Thanks for your comments :) 👍
Hi, Thanks for this library!!! I want to predict the market price(Open price) of a stock. I'm trying to apply my data to the N-beats tutorial. but, I can't get 10 plots in the result evaluation step.
I executed code
Actual behavior
Why is there only one plot? And can you tell me why the smape error increases abnormally??
Compare below with baseline error: tensor(14734.1045) Baseline error was: tensor(0.2449)
here is my data and Colab notebook.
Nbeats_Open.zip