I wonder how this would perform on the M4 Makridakis competitions (time series competitions) https://github.com/Mcompetitions/M4-methods https://en.wikipedia.org/wiki/Makridakis_Competitions Makridakis' conclusion remained true for many years: "statistically sophisticated and complex methods do not necessarily provide more accurate forecasts than simpler ones." Maybe things have changed? (side: Nixtla showed a simple…
Zero-Shot Forecasting: Our Search for a Time-Series Foundation Model
31–36 of 36 posts
Re: Zero-Shot Forecasting: Our Search for a Time-Series Foundation Model
#32Earlier quoted context omitted.
Author here, we're trying these out for the first time for our use-cases so these are great points for us to improve upon!
Good to see positive reception to feedback! Sorry if my message came out as condescending, was not the intent. I recommend reading this piece on metrics https://openforecast.org/wp-content/uploads/2024/07/Svetunko... . It's easy to grasp, yet it contains great tips.
Re: Zero-Shot Forecasting: Our Search for a Time-Series Foundation Model
#33> Our dataset consisted of Kubernetes pod metrics collected from a production retail checkout application. That sums it up and it’s no surprise why Datadog’s toto model performed exceptionally well. The results would have been much more useful had they opted for a heterogenous mix of data sets. I am thinking of census data and statistics, or financial forecasting (GDP, interest rates), or clinical trial drop-out rate…
But for general purpose time-series forecasting, benchmarks mentioned in other comments like GIFT or M4 might come in handy. We might include them in the follow-up experiment.
Re: Zero-Shot Forecasting: Our Search for a Time-Series Foundation Model
#34I'd be curious what the results would be with the automated Autogluon fit/evals. I suspect given the results here, a weighted average model would likely win out.
Re: Zero-Shot Forecasting: Our Search for a Time-Series Foundation Model
#35I'm a bit confused by the results table. Were these models tested against the same dataset? Also, a visualization of the test data and forecasts would be helpful as well.
Re: Zero-Shot Forecasting: Our Search for a Time-Series Foundation Model
#36Earlier quoted context omitted.
Short answer: i use multiple metrics, never rely on just 1 metric. Long answer: Is the metric for people with subject-matter knowledge? Then (Weighted)RMSSE, or the MASE alternative for a median forecast. WRMSSE is is very nice, it can deal with zeroes, is scale-invariant and symmetrical in penalizing under/over-forecasting. The above metrics are completely uninterpretable to people outside of the forecasting sphere…
MAPE can be a problem also if you have a problem where rare excursions are what you want to predict and the cost of missing an event is much higher than predicting a non-event. A model that just predicts no change would have very low MAPE because most of the time nothing happens. When the event happens, however, the error of predicting status quo ante is much worse than small baseline errors.