i
DATAIST
Review · 2025-10-03

TSci's four agents cut forecast error 10.4% over statistical baselines

TSci's four agents cut forecast error 10.4% over statistical baselines

Real companies deal in tens of thousands of short, noisy time series, full of gaps, with horizons and sampling frequencies that keep changing. The hard part is not the model — it is everything around it: cleaning the data, validating it properly, building ensembles, producing reports that survive an audit. Narrow domain-specific solutions transfer badly between domains, and general-purpose ones tend to break on dirty data. The authors take a refreshing angle: instead of racing to build one more model, assemble an LLM-based multi-agent system that imitates a careful researcher and covers the whole pipeline, from input file to a report anyone can check.

Inside TSci

TSci is four agents working in concert, each with its own role and its own toolset.

  • Curator: diagnoses the data, repairs gaps and outliers, builds visualizations and pulls out the structure of the series — trend, seasonality, stationarity.
  • Planner: reads the diagnostics and the plots, picks model families from a library of 21 options ranging from ARIMA to gradient boosting and simple neural networks, tunes the hyperparameters, and writes a short justification for each choice.
  • Forecaster: trains the top-k models and decides how to combine their forecasts — take the best one, average by quality, or apply robust aggregation.
  • Reporter: assembles a transparent report with metrics, assumptions, confidence estimates and a complete log of the decisions made.
Overview of the TSci framework: a cooperative multi-agent system for time series analysis and forecasting that works the way a human scientist does. Once the data arrives, a four-agent pipeline starts: Curator produces the analytical reports, Planner selects model configurations through reasoning and validation, Forecaster combines model outputs into the final forecast, Reporter writes the final report.

Looking at the plots, not just the numbers

TSci does not rely on textual context alone; it also extracts features from the charts. Simple visual descriptors — taken from the overview plot, the decomposition, the ACF/PACF — help Planner narrow the shortlist and help Curator make the right preprocessing calls. It is a practical compromise: lightweight visual analysis without heavy computer vision, but with a real payoff for model choice and settings.

Curator's workflow: the raw dataset is diagnosed and cleaned, visualizations are produced, and a final summary is compiled covering trend, seasonality and stationarity.

From a forecast to a report you can audit

Reporter does not simply glue the pictures together. It records:

  • the final ensemble forecast and its confidence intervals;
  • metrics for every candidate model and for the ensemble;
  • an explanation of why these models and these weights;
  • assumptions and limitations;
  • the full trace of tool-level decisions.

A report like that is easier to discuss with domain experts and easier to hand between teams.

The authors tested TSci on eight benchmarks from five domains: energy, climate, finance, health. On average the system cuts error by 10.4% against statistical baselines and by 38.2–38.3% against LLM baselines. The gap is widest on hard datasets with long horizons and strong seasonality. On Weather, TSci's mean MAE is below every competitor; on ECL it comfortably beats both statistical and LLM approaches; on Exchange and ILI the advantage holds even with short histories.

TSci's performance compared with five LLM-based baselines across eight datasets.

Why it works

The ablations are honest about what each component contributes. Remove the preprocessing and MAE jumps by 41.8% on average. Strip out Curator's analysis stage and you add another 28.3%. Turn off hyperparameter tuning and the degradation is clear, especially at long horizons, where the cost of an error compounds. In other words, what wins is not one clever model but a well-designed process: diagnostics, a sensible shortlist, validation, and a robust ensemble.

Ablation study of TSci with three variants: without data preprocessing, without data analysis, and without parameter optimization. TSci reaches the lowest MAE in most settings.

In pairwise comparisons of reports against five LLM systems, TSci wins more often on every quality dimension — from the soundness of the analysis and the model selection to the structure and practicality of the recommendations. The margins are largest on rigorous argumentation and explanations.

Case study: electricity

The slice of ECL they picked shows pronounced cycles and non-stationarity. Planner favored ARIMA, Prophet and exponential smoothing; the ensemble raised the weights of the models that capture seasonality better. Over a long horizon the individual models accumulate error, while the ensemble stays stable and follows the cyclical pattern.

Example decomposition of a time series from the ECL dataset: the original series, the trend, and the seasonal and residual components.
A case study of the ensemble forecast alongside individual model predictions on the ECL dataset.

The takeaway

TSci shifts the focus away from the model and onto the process around the data. For teams that means less manual routine, fewer mistakes during preparation, more stability and better explanations. It also matters that the model library is broad and the decisions are auditable, which makes adoption easier in domain-agnostic settings. The authors see the next steps as support for multimodal setups, plugging in external knowledge, and improving efficiency at scale.

💾 Code

AI paper breakdowns

Every day we read the new AI papers and retell what matters in plain language — no hype, no filler. If you want to see where AI agents are heading before everyone else, subscribe.

New breakdowns every day.

On Telegram