-
Hello, For my use-case I am trying to optimize a time series model such that the prediction curve (multi-step output) has a similar shape as the observation curve. Thus the rmse or mae is not the most critical value and I was wondering if a soft-dtw may be used as loss function So my question is: has anyone ever successfully applied other loss functions for multi-step time series forecasting? If yes, could you share a code snippet for such a loss function? Best regards, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
No, I have not used other loss functions. |
Beta Was this translation helpful? Give feedback.
No, I have not used other loss functions.
However, there may be something that might be useful. If you are interested in the shape more than in the actual values, you could normalize the target (ys) between 0 and 1. And use a MSELoss. What do you think?