Issues related to model training #185
Replies: 1 comment 3 replies
-
No, you don't need to test for stationarity. AutoTS has preprocessing that can deal with it, if needed (only some models are sensitive to it). I do recommend you look over your historical data and make sure there aren't any weird jumps or discontinuities, or lots of missing data in recent history, as those can cause problems. That runtime warning is probably not a concern. AutoTS tries lots of models and some of those models failing is perfectly normal - not all models work on all data. It will simply pass over the failures. However, if you run into any errors that prevent you generating forecasts, do let me know. As for number of models, I think what you are asking about refers to |
Beta Was this translation helpful? Give feedback.
-
I am a novice in time series forecasting, and I would like to consult you with some questions, thank you!
May I ask how the number of models is determined? I now have 24 months of data and want to use it to predict the data for the next three months. Do I need to change the cross-validation and the maximum number of iterations? Does the data need to be tested for stationarity in advance, or is it directly fed into AutoTS to use a randomly generated model?
In addition, I found a lot of RuntimeWarning: divide by zero encountered in divide errors during the training process. Do I need to do anything to deal with it?
Beta Was this translation helpful? Give feedback.
All reactions