This scene mirrors the classic "AirPassengers" LSTM exercise: monthly international airline passenger totals from 1949–1960, laid out as a bar chart in 3D. A translucent window sweeps across the bars representing the lookback window an LSTM consumes at each step, while a cluster of glowing rods above it stands in for the network's hidden state reacting to the sequence. A blue tube traces the network's one-step-ahead prediction against the grey actual bars.
The real AirPassengers dataset (Box & Jenkins, 1976) is a textbook example of multiplicative seasonality with trend — exactly the kind of nonstationary pattern that made simple ARIMA models popular for decades before recurrent networks like LSTMs could learn the same structure directly from raw sequences.
A 3D bar chart of monthly airline passenger totals with a sliding lookback window, an animated hidden-state cluster, and a live LSTM-style prediction tube that tightens or drifts as you change the network's memory and capacity.
Prediction accuracy depends on both lookback window length and hidden-state size: short windows and small hidden layers under-fit the seasonal pattern, while wider context and more capacity let the blue prediction tube hug the grey actual bars.
Adjust lookback window and hidden units to watch the mean absolute error change, then enable the 12-month forecast to see the amber uncertainty cone widen the further the model projects beyond real data.
The AirPassengers dataset (1949-1960) is one of the most-used toy datasets in time-series forecasting — it has trend, multiplicative seasonality, and nonstationary variance, all in just 144 points.