<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Spatio-temporal forecasting | Victor Boussange</title>
    <link>https://vboussange.github.io/tag/spatio-temporal-forecasting/</link>
      <atom:link href="https://vboussange.github.io/tag/spatio-temporal-forecasting/index.xml" rel="self" type="application/rss+xml" />
    <description>Spatio-temporal forecasting</description>
    <generator>Wowchemy (https://wowchemy.com)</generator><language>en-us</language><lastBuildDate>Fri, 20 Feb 2026 00:00:00 +0000</lastBuildDate>
    <image>
      <url>https://vboussange.github.io/media/icon_hua3c898eed18b98379688891d5011a1d0_203625_512x512_fill_lanczos_center_3.png</url>
      <title>Spatio-temporal forecasting</title>
      <link>https://vboussange.github.io/tag/spatio-temporal-forecasting/</link>
    </image>
    
    <item>
      <title>MuScaRi</title>
      <link>https://vboussange.github.io/software/muscari/</link>
      <pubDate>Tue, 08 Jul 2025 00:00:00 +0000</pubDate>
      <guid>https://vboussange.github.io/software/muscari/</guid>
      <description></description>
    </item>
    
    <item>
      <title>EcoDynCast</title>
      <link>https://vboussange.github.io/funding/ecodyncast/</link>
      <pubDate>Wed, 01 Jan 2025 00:00:00 +0000</pubDate>
      <guid>https://vboussange.github.io/funding/ecodyncast/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Are time series foundation models useful for scientific applications?</title>
      <link>https://vboussange.github.io/post/timeseries_foundation_model/</link>
      <pubDate>Fri, 20 Feb 2026 00:00:00 +0000</pubDate>
      <guid>https://vboussange.github.io/post/timeseries_foundation_model/</guid>
      <description>&lt;script
	type=&#34;module&#34;
	src=&#34;https://gradio.s3-us-west-2.amazonaws.com/6.5.1/gradio.js&#34;
&gt;&lt;/script&gt;
&lt;p&gt;Neuron activity, fish stocks, viral spread, El Niño oscillations, energy demand: these complex phenomena show remarkable patterns that continue to fascinate scientists. Analyzing these dynamics through scientific models (that is, models embedding domain knowledge; e.g., &lt;a href=&#34;https://en.wikipedia.org/wiki/Compartmental_models_%28epidemiology%29&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;compartmental models&lt;/a&gt;) has allowed us to explore and understand the driving forces and mechanisms underlying these dynamical systems.&lt;/p&gt;
&lt;p&gt;At the other end of the modeling spectrum, we have purely data-driven approaches that incorporate no scientific knowledge about the system. These models have their place in the scientific realm because they address a fundamental question: Can you forecast the system with data alone? Or is domain knowledge essential? A purely data-driven model achieving strong predictive performance provides both a scientific baseline &lt;em&gt;and&lt;/em&gt; a reality check for domain-informed approaches.&lt;/p&gt;
&lt;p&gt;Designing such baselines has traditionally been challenging, until now. &lt;strong&gt;Chronos-2&lt;/strong&gt; is a time series foundation model bringing zero-shot forecasting to the AI4Science community. Zero-shot forecasting means the method works off-the-shelf: plug in your time series dataset and obtain predictions without any training or fine-tuning. In this post, we discuss how &lt;strong&gt;Chronos-2&lt;/strong&gt; differs from existing time series forecasting methods, delve into its architectural details, and benchmark it on an interesting scientific application: predicting spiking neuron dynamics 🧠.&lt;/p&gt;
&lt;h2 id=&#34;from-linear-autoregressive-models-to-foundation-models-for-time-series-forecasting&#34;&gt;From linear autoregressive models to foundation models for time series forecasting&lt;/h2&gt;
&lt;p&gt;Classical data-driven approaches for time series forecasting, such as &lt;a href=&#34;https://en.wikipedia.org/wiki/Autoregressive_model&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;classical autoregressive models&lt;/a&gt;, had limited expressive power for non-linear dynamics.&lt;/p&gt;
&lt;p&gt;The advent of deep learning, particularly &lt;a href=&#34;https://en.wikipedia.org/wiki/Recurrent_neural_network&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;recurrent neural network architectures&lt;/a&gt;, allowed models to capture complex non-linear patterns and temporal dependencies that classical methods missed. But critically, these models faced overfitting problems when only short time series were available, which is quite problematic for scientific applications, where datasets are often shallow.&lt;/p&gt;
&lt;p&gt;An intriguing idea came from &lt;a href=&#34;https://arxiv.org/abs/2302.11939&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;this paper from 2024&lt;/a&gt;, where the authors used GPT-2, a pretrained large language model, and adapted it to predict time series. The approach worked remarkably well: patterns in text are universal, and having seen many of them allowed predicting time series with minimal fine-tuning.&lt;/p&gt;
&lt;p&gt;This was the prelude to &lt;strong&gt;time series foundation models&lt;/strong&gt;. Time series foundation models are no longer fine-tuned from LLM backbones, but follow similar training strategies (learning from massive time series corpora). Importantly, they enable zero-shot forecasting; this allows plug-and-play forecasting through in-context learning, where the model learns patterns from the provided context without parameter updates.&lt;/p&gt;
&lt;p&gt;Time series foundation models have shown increasing interest (Google&amp;rsquo;s TimesFM and others demonstrated impressive capabilities) but most remained &lt;em&gt;univariate&lt;/em&gt;, treating variables independently and ignoring covariates and multivariate structure inherent to scientific systems. Accounting for covariates (exogenous variables) is critical for scientific applications: for neuron activity, the applied stimulus; for fish stocks, fishing pressure; for energy demand, weather conditions. This limitation considerably restricted the use of these models for scientific applications.&lt;/p&gt;
&lt;h2 id=&#34;meet-chronos-2-covariate-informed-multivariate-time-series-forecasting&#34;&gt;Meet Chronos-2: covariate-informed multivariate time series forecasting&lt;/h2&gt;
&lt;p&gt;Chronos-2 addresses these limitations. It&amp;rsquo;s a time series foundation model with a transformer-based architecture supporting:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Multivariate forecasting&lt;/strong&gt;: Jointly model co-evolving variables (e.g., coupled climate indices, neural population dynamics)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Covariate integration&lt;/strong&gt;: Incorporate both past-only covariates (observed history) and known future covariates (planned interventions, calendar effects)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Cross-learning&lt;/strong&gt;: Share information across related time series in a batch, particularly valuable when you have multiple related series. We&amp;rsquo;ll discuss this in more detail below&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The base model (120M parameters) runs on a single mid-range GPU, while the small model (28M parameters) is CPU-compatible with less than 1% performance degradation, demonstrating remarkable efficiency. This capability makes it accessible to anyone without high-end infrastructure!&lt;/p&gt;
&lt;p&gt;On comprehensive benchmarks including &lt;a href=&#34;https://huggingface.co/spaces/autogluon/fev-bench&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;FEV-Bench&lt;/a&gt;, &lt;a href=&#34;https://huggingface.co/spaces/Salesforce/GIFT-Eval&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;GIFT-Eval&lt;/a&gt;, and Chronos-Bench-II, Chronos-2 achieves &lt;strong&gt;state-of-the-art zero-shot performance&lt;/strong&gt;, with the largest gains on covariate-informed forecasting tasks. For AI4Science, this provides a step-change capability: establishing robust data-driven baselines requires only a few lines of code, allowing researchers to quickly assess the intrinsic predictability of their systems.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Chronos-2 Model card on HF&lt;/strong&gt;: &lt;a href=&#34;https://huggingface.co/amazon/chronos-2&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;https://huggingface.co/amazon/chronos-2&lt;/a&gt;&lt;/p&gt;
&lt;h2 id=&#34;the-secret-sauce-group-attention&#34;&gt;The secret sauce: group attention&lt;/h2&gt;
&lt;p&gt;Time series foundation models approach forecasting differently than classical methods: to leverage transformer architectures, they discretize (patch or tokenize) the continuous signal.&lt;/p&gt;
&lt;p&gt;While decoder-only architectures (like &lt;a href=&#34;https://huggingface.co/google/timesfm-2.0-500m-pytorch&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;TimesFM&lt;/a&gt; or &lt;a href=&#34;https://huggingface.co/Salesforce/moirai-2.0-R-small&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Moirai&lt;/a&gt;) may seem natural for time series modeling, Chronos-2 uses an &lt;strong&gt;encoder-only architecture&lt;/strong&gt; based on a &lt;a href=&#34;https://en.wikipedia.org/wiki/T5_%28language_model%29&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;T5&lt;/a&gt; variant with rotary position embeddings. These embeddings are now a standard technique in modern transformers; see this excellent &lt;a href=&#34;https://huggingface.co/blog/designing-positional-encoding&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;HF blog post on positional encodings&lt;/a&gt; for more details.&lt;/p&gt;
&lt;p&gt;















&lt;figure  &gt;
  &lt;div class=&#34;d-flex justify-content-center&#34;&gt;
    &lt;div class=&#34;w-100&#34; &gt;&lt;img src=&#34;https://arxiv.org/html/2510.15821v1/x1.png&#34; alt=&#34;Chronos-2 architecture&#34; loading=&#34;lazy&#34; data-zoomable /&gt;&lt;/div&gt;
  &lt;/div&gt;&lt;/figure&gt;

&lt;em&gt;Figure: Chronos-2 architecture showing patching, time attention, and group attention layers. Source: &lt;a href=&#34;https://arxiv.org/abs/2510.15821&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Chronos-2 paper&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Chronos-2&amp;rsquo;s core innovation is &lt;strong&gt;group attention&lt;/strong&gt; in the transformer stack. Traditional time series transformers apply self-attention along the temporal dimension. Chronos-2 alternates between two attention mechanisms:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Time attention&lt;/strong&gt;: Aggregates information across patches within a single time series (capturing temporal dependencies)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Group attention&lt;/strong&gt;: Aggregates information across all series within a group at each patch index (capturing cross-series patterns)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Together with the patching and masking strategy, this mechanism naturally handles diverse scenarios: single time series, multiple series sharing metadata, variates of a multivariate series, or targets with associated covariates. The model infers variable interactions &lt;em&gt;in-context&lt;/em&gt; without architectural changes per task.&lt;/p&gt;
&lt;p&gt;Critically, compared to concatenating covariates for the multivariate setting (as &lt;a href=&#34;https://huggingface.co/Salesforce/moirai-1.0-R-base&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Moirai-1&lt;/a&gt; does) which leads to quadratic scaling, the group attention mechanism scales linearly with the number of variates $V$.&lt;/p&gt;
&lt;p&gt;Since Chronos and GIFT-Eval are primarily univariate corpus datasets, Chronos-2 leverages synthetic data for multivariate capabilities. The training data combines univariate generators (AR models, exponential smoothing, trend-seasonality decompositions) with multivariatizers that impose instantaneous and temporal correlations on sampled univariate series. Combined with curated univariate data, this enables robust cross-task generalization.&lt;/p&gt;
&lt;h2 id=&#34;putting-chronos-2-on-the-test-bench-spiking-neuron-dynamics&#34;&gt;Putting Chronos-2 on the test bench: spiking neuron dynamics&lt;/h2&gt;
&lt;p&gt;Let&amp;rsquo;s stress-test Chronos-2 on an important problem in neuroscience: neural dynamics. Our goal here is to predict neural firing 🧠🔥.&lt;/p&gt;
&lt;div align=&#34;center&#34;&gt;
&lt;p&gt;&lt;a href=&#34;https://youtu.be/lhkK6jURljs&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;















&lt;figure  &gt;
  &lt;div class=&#34;d-flex justify-content-center&#34;&gt;
    &lt;div class=&#34;w-100&#34; &gt;&lt;img src=&#34;https://img.youtube.com/vi/lhkK6jURljs/0.jpg&#34; alt=&#34;Firing neuron visualization&#34; loading=&#34;lazy&#34; data-zoomable /&gt;&lt;/div&gt;
  &lt;/div&gt;&lt;/figure&gt;
&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;A neuron firing in real-time. Calcium waves sweep along the cell body as the neuron spikes. The complex dynamics we&amp;rsquo;re trying to predict: can a purely data-driven model forecast when and how these firing patterns emerge? (UC Berkeley images by Na Ji)&lt;/em&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;p&gt;We&amp;rsquo;ll use the &lt;strong&gt;&lt;a href=&#34;https://en.wikipedia.org/wiki/FitzHugh%E2%80%93Nagumo_model&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;FitzHugh-Nagumo model&lt;/a&gt;&lt;/strong&gt;, a simplified neuron model exhibiting complex dynamics from steady states to limit cycles to &lt;a href=&#34;https://en.wikipedia.org/wiki/Attractor&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;chaotic attractors&lt;/a&gt;. The latter regime echoes the butterfly effect: although the system is fully deterministic, the nonlinearity is such that long-term prediction becomes impossible.&lt;/p&gt;
&lt;p&gt;The model describes a neuron&amp;rsquo;s membrane potential $v$ and recovery variable $w$ driven by external forcing $f(t)$:&lt;/p&gt;
&lt;p&gt;$$\frac{dv}{dt} = (1 - v) \cdot v \cdot (v - a) - w + f(t)$$&lt;/p&gt;
&lt;p&gt;$$\frac{dw}{dt} = \varepsilon \cdot (v - b \cdot w)$$&lt;/p&gt;
&lt;p&gt;We generate diverse time series by varying parameters $a$ (excitability threshold), $b$ (recovery strength), $\varepsilon$ (recovery timescale), and forcing patterns (sinusoidal external stimulus).&lt;/p&gt;
&lt;p&gt;This parameter space spans three dynamical regimes: stable fixed points (low excitability), limit cycles (sustained oscillations), and near-chaotic dynamics where long-term prediction becomes infeasible. We test whether Chronos-2 can forecast across these regimes in a zero-shot manner.&lt;/p&gt;
&lt;h3 id=&#34;getting-started-with-chronos-2&#34;&gt;Getting Started with Chronos-2&lt;/h3&gt;
&lt;p&gt;To use Chronos-2, first install the package:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;pip install chronos
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;For basic inference, load the model and call &lt;code&gt;predict_df&lt;/code&gt; with your data:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-python&#34; data-lang=&#34;python&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;kn&#34;&gt;from&lt;/span&gt; &lt;span class=&#34;nn&#34;&gt;chronos&lt;/span&gt; &lt;span class=&#34;kn&#34;&gt;import&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;BaseChronosPipeline&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;n&#34;&gt;pipeline&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;=&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;BaseChronosPipeline&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;from_pretrained&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;s2&#34;&gt;&amp;#34;amazon/chronos-2&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;  &lt;span class=&#34;c1&#34;&gt;# or &amp;#34;autogluon/chronos-2-small&amp;#34; for CPU&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;n&#34;&gt;device_map&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;=&lt;/span&gt;&lt;span class=&#34;s2&#34;&gt;&amp;#34;cuda&amp;#34;&lt;/span&gt;     &lt;span class=&#34;c1&#34;&gt;# or &amp;#34;cpu&amp;#34;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;n&#34;&gt;predictions&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;=&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;pipeline&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;predict_df&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;n&#34;&gt;context_df&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;          &lt;span class=&#34;c1&#34;&gt;# Historical data&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;n&#34;&gt;prediction_length&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;=&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;H&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;c1&#34;&gt;# Forecast horizon&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;n&#34;&gt;id_column&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;=&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;series_id&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;n&#34;&gt;timestamp_column&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;=&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;timestamp&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;n&#34;&gt;target&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;=&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;[&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;y&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;]&lt;/span&gt;         &lt;span class=&#34;c1&#34;&gt;# Target variable(s)&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Check out the &lt;a href=&#34;https://github.com/amazon-science/chronos-forecasting/blob/main/notebooks/chronos-2-quickstart.ipynb&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;quickstart notebook&lt;/a&gt; for more comprehensive examples.&lt;/p&gt;
&lt;h3 id=&#34;interactive-experiment-forecasting-fitzhugh-nagumo-dynamics&#34;&gt;Interactive Experiment: Forecasting FitzHugh-Nagumo Dynamics&lt;/h3&gt;
&lt;p&gt;We created an interactive experiment using Gradio to explore Chronos-2&amp;rsquo;s capabilities on neural dynamics. The setup simulates multiple FitzHugh-Nagumo time series, which serve as context for cross-learning. One series is held out with specific parameter values to test the model&amp;rsquo;s zero-shot forecasting ability.&lt;/p&gt;
&lt;p&gt;The interface allows adjusting the number of context series for cross-learning, varying FitzHugh-Nagumo parameters ($a$, $b$, $\varepsilon$, forcing amplitude and frequency) to explore different dynamical regimes, and toggling whether the forcing signal is provided as a known covariate. The model forecasts both the membrane potential $v$ and recovery variable $w$ simultaneously (multivariate forecasting) while incorporating the external forcing as a covariate.&lt;/p&gt;
&lt;p&gt;&lt;gradio-app src=&#34;https://vboussange-fitzhug-nagumo-chronos2-explorer.hf.space&#34;&gt;&lt;/gradio-app&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Results:&lt;/strong&gt; Chronos-2 demonstrates impressive forecasting performance across dynamical regimes. When the dynamics exhibit limit cycles, the predictions are nearly indistinguishable from the ground truth. When the system exhibits chaotic behavior (as with the default parameter combination), the model cannot match the ground truth exactly but still captures it accurately over the short to medium term while properly indicating uncertainty in the predictions.&lt;/p&gt;
&lt;h2 id=&#34;what-this-means-for-ai4science&#34;&gt;What this means for AI4Science&lt;/h2&gt;
&lt;p&gt;Chronos-2 enables researchers to establish data-driven performance benchmarks with minimal effort. If Chronos-2 achieves strong predictive performance, your system has learnable structure from data alone. If it fails, you&amp;rsquo;ve learned something fundamental about intrinsic stochasticity, measurement limitations, or the necessity of domain knowledge. Either way, comparing Chronos-2 against physics-informed models reveals where domain knowledge provides value beyond data. This is scientific insight in itself.&lt;/p&gt;
&lt;p&gt;‼️ &lt;strong&gt;Important caveat&lt;/strong&gt;: Ensure your dataset is domain-specific and not represented in pretraining data. While Chronos-2 primarily uses synthetic and public benchmark datasets, verify your application domain wasn&amp;rsquo;t included in training to avoid inflated performance estimates that would undermine scientific conclusions.&lt;/p&gt;
&lt;p&gt;Chronos-2 also supports fine-tuning for developing domain-specific models. Check out the &lt;a href=&#34;https://github.com/amazon-science/chronos-forecasting/blob/main/notebooks/chronos-2-quickstart.ipynb&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;quickstart notebook&lt;/a&gt; for examples of covariate-informed forecasting and fine-tuning.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;Model weights, code, and documentation available at &lt;a href=&#34;https://github.com/amazon-science/chronos-forecasting&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;amazon-science/chronos-forecasting&lt;/a&gt; and on the &lt;a href=&#34;https://huggingface.co/amazon/chronos-2&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Hugging Face Hub&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>A calibration framework to improve mechanistic forecasts with hybrid dynamic models</title>
      <link>https://vboussange.github.io/publication/mini-batching/</link>
      <pubDate>Wed, 01 Jan 2025 00:00:00 +0000</pubDate>
      <guid>https://vboussange.github.io/publication/mini-batching/</guid>
      <description>&lt;!-- 
&lt;div class=&#34;alert alert-note&#34;&gt;
  &lt;div&gt;
    Click the &lt;em&gt;Cite&lt;/em&gt; button above to demo the feature to enable visitors to import publication metadata into their reference management software.
  &lt;/div&gt;
&lt;/div&gt;


&lt;div class=&#34;alert alert-note&#34;&gt;
  &lt;div&gt;
    Create your slides in Markdown - click the &lt;em&gt;Slides&lt;/em&gt; button to check out the example.
  &lt;/div&gt;
&lt;/div&gt;


Supplementary notes can be added here, including [code, math, and images](https://wowchemy.com/docs/writing-markdown-latex/). --&gt;
</description>
    </item>
    
    <item>
      <title>Temporal horizons in forecasting: a performance-learnability trade-off</title>
      <link>https://vboussange.github.io/publication/temporal-horizons-forecasting/</link>
      <pubDate>Wed, 01 Jan 2025 00:00:00 +0000</pubDate>
      <guid>https://vboussange.github.io/publication/temporal-horizons-forecasting/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Paleoenvironments shaped the exchange of terrestrial vertebrates across Wallace’s Line</title>
      <link>https://vboussange.github.io/publication/dream/</link>
      <pubDate>Fri, 07 Jul 2023 00:00:00 +0000</pubDate>
      <guid>https://vboussange.github.io/publication/dream/</guid>
      <description>&lt;!-- 
&lt;div class=&#34;alert alert-note&#34;&gt;
  &lt;div&gt;
    Click the &lt;em&gt;Cite&lt;/em&gt; button above to demo the feature to enable visitors to import publication metadata into their reference management software.
  &lt;/div&gt;
&lt;/div&gt;


&lt;div class=&#34;alert alert-note&#34;&gt;
  &lt;div&gt;
    Create your slides in Markdown - click the &lt;em&gt;Slides&lt;/em&gt; button to check out the example.
  &lt;/div&gt;
&lt;/div&gt;


Supplementary notes can be added here, including [code, math, and images](https://wowchemy.com/docs/writing-markdown-latex/). --&gt;
</description>
    </item>
    
    <item>
      <title>Ancient sedimentary DNA to forecast trajectories of ecosystem under climate change</title>
      <link>https://vboussange.github.io/publication/ancient-dna-forecast-ecosystems/</link>
      <pubDate>Sun, 01 Jan 2023 00:00:00 +0000</pubDate>
      <guid>https://vboussange.github.io/publication/ancient-dna-forecast-ecosystems/</guid>
      <description></description>
    </item>
    
  </channel>
</rss>
