Live data from Hacker News

Zero-Shot Forecasting: Our Search for a Time-Series Foundation Model

parseable.com

11–20 of 36 posts

Re: Zero-Shot Forecasting: Our Search for a Time-Series Foundation Model

#11
post #10

Look i'm optimistic about time-series foundation models too, but this post is hard to take seriously when the test is so flawed: - Forward filling missing short periods of missing values. Why keep this in when you explictly mention this is not normal? Either remove it all or don't impute anything - Claiming superiority over classic models and then not mentioning any in the results table - Or let's not forget, the car…

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!

Re: Zero-Shot Forecasting: Our Search for a Time-Series Foundation Model

#12
post #9

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…

This looks like a great benchmark! We've been thinking of doing a better and more detailed follow-up and this seems like the perfect dataset to do that with. Thanks!

Re: Zero-Shot Forecasting: Our Search for a Time-Series Foundation Model

#13

Interesting, what are the usecases youre using the models for? Would like to know more on that, like anomaly detection

That's actually one of the use-cases that we set out to explore with these models. We'll release a head-to-head comparison soon!

Re: Zero-Shot Forecasting: Our Search for a Time-Series Foundation Model

#14
> 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 rates etc. So many interesting problems out there.

Re: Zero-Shot Forecasting: Our Search for a Time-Series Foundation Model

#15
post #10

Look i'm optimistic about time-series foundation models too, but this post is hard to take seriously when the test is so flawed: - Forward filling missing short periods of missing values. Why keep this in when you explictly mention this is not normal? Either remove it all or don't impute anything - Claiming superiority over classic models and then not mentioning any in the results table - Or let's not forget, the car…

To clarify, you'd prefer rmsle?

Re: Zero-Shot Forecasting: Our Search for a Time-Series Foundation Model

#16

Interesting, what are the usecases youre using the models for? Would like to know more on that, like anomaly detection

That's actually one of the use-cases that we set out to explore with these models. We'll release a head-to-head comparison soon!

That's the thing I'm most interested in out of these. Super interested to see what you find out.

Did you or do you plan to publish any of your code or data sets from this?

Re: Zero-Shot Forecasting: Our Search for a Time-Series Foundation Model

#18

> 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…

The GIFT Eval benchmark would be a good place to start: https://huggingface.co/spaces/Salesforce/GIFT-Eval

Re: Zero-Shot Forecasting: Our Search for a Time-Series Foundation Model

#20
I think that the concept of a "foundation model" for time series is actually a bit flawed as presented in this blog post. A foundation model is interesting because it is capable of many tasks _beyond the target tasks_ that it was trained to do, whereas what the author is looking for is a time-series model that can make out-of-distribution predictions without re-training - which is, in my opinion, a problem that is pretty well solved by existing ARIMA and (especially) Prophet models (Yes, you have to re-fit the model on your distribution, but this is not at all akin to the task of training or fine-tuning an LLM, it's something you can do in seconds on a modern CPU, and yes, there are certain hyperparameters that may need to be selected, but they are actually fairly minimal).

But for a model to make out-of-distribution predictions does not make it a foundation model for time series, really that's just the basic task that all time series forecasting models do. A more interesting question is, does an LLM architecture seem to improve the task of univariate or multivariate time-series prediction? I don't think the answer is yes, although, depending on your domain, being able to use language inputs to your model may have a positive impact, and the best way to incorporate language inputs is certainly to use a transformer architecture, but that isn't what is addressed in this post.

Post reply on HN