I do not have a horse in the race, but it is interesting to see open source comparisons to traditional timeseries strategies: https://github.com/Nixtla/nixtla/tree/main/experiments/amazo... In general, the M-Competitions ( https://forecasters.org/resources/time-series-data/ ), the olympics of timeseries forecasting, have proven frustrating for ML methods... linear models do shockingly well and the ML models that have…
Transformer/ML models by themselves have a tendency to overfit past patterns. They pick up more signal in the patterns, but they also pick up spurious patterns. They're low bias but high variance.
It would be more interesting to compare an ensemble of transformer models with an ensemble of linear models to see which is more accurate.
(that said, it's pretty impressive that an ensemble of simple linear models can beat a large scale transformer model -- this tells me the domain being forecast has a high degree of variance, which transformer models by themselves don't do well on.)