Datasets:

Modalities:
Text
Formats:
parquet
ArXiv:
License:
Dataset Viewer
Auto-converted to Parquet Duplicate
start
string
target._np_shape
list
target
list
_source_directory
string
_source_filename
string
2025-01-20 20:03
[ 3, 4096 ]
[-1.3857524384093538,-1.393600320504634,-1.3901656506733042,-1.3753090295865413,-1.3490278964913938,(...TRUNCATED)
Aizawa
0_T-4096.arrow
2025-01-21 05:35
[ 3, 4096 ]
[0.02781818349137328,0.02627097549932861,0.024492309180124794,0.022520922469288305,0.020395197435534(...TRUNCATED)
Aizawa
129_T-4096.arrow
2025-01-21 07:01
[ 3, 4096 ]
[-0.058143119956926385,-0.04974578373662959,-0.04167370393556652,-0.03391685218816126,-0.02646493792(...TRUNCATED)
Aizawa
146_T-4096.arrow
2025-01-21 08:01
[ 3, 4096 ]
[-0.05135939379065632,-0.07691107035458028,-0.099150544562444,-0.11742047204553209,-0.13121341973720(...TRUNCATED)
Aizawa
157_T-4096.arrow
2025-01-21 09:34
[ 3, 4096 ]
[-0.07561683035659043,-0.04210091459213546,-0.00523371515952274,0.03467293689528607,0.07721756259724(...TRUNCATED)
Aizawa
175_T-4096.arrow
2025-01-21 09:41
[ 3, 4096 ]
[-0.06984711406861475,-0.08258220345426232,-0.09395065411796946,-0.10387261368428646,-0.112286769855(...TRUNCATED)
Aizawa
176_T-4096.arrow
2025-01-20 22:22
[ 3, 4096 ]
[0.0010482051861723288,0.003319796278791828,0.0054352088871160355,0.007374660865585666,0.00912162438(...TRUNCATED)
Aizawa
30_T-4096.arrow
2025-01-20 23:18
[ 3, 4096 ]
[-0.011205875494152705,0.22442432279588942,0.4562589686786398,0.6694720427139822,0.8497731025728242,(...TRUNCATED)
Aizawa
41_T-4096.arrow
2025-01-21 00:36
[ 3, 4096 ]
[-1.3813362877562054,-1.2857071259973207,-1.169640596713045,-1.035997160292604,-0.8878958842532366,-(...TRUNCATED)
Aizawa
58_T-4096.arrow
2025-01-21 00:43
[ 3, 4096 ]
[-0.15474418088351566,-0.2526980538070797,-0.34028378871075365,-0.41604479689637486,-0.4788664693398(...TRUNCATED)
Aizawa
60_T-4096.arrow
End of preview. Expand in Data Studio

Dataset Card for dataset-panda72M-repro

These are all the datasets we used for training our scaled-up Panda-72M model (https://huggingface.co/GilpinLab/panda-72M) of Panda: Patched Attention for Nonlinear Dynamics.

We have made all parquet files here streamable by using chunked row groups, instead of the single row group containing all data (as done for our other Panda datasets on HF).

NOTE (on historical changelog):

base_mixedp_ic16 The dataset in base_mixedp_ic16/train-part1.parquet contains only the first 7 initial conditions present in the full base-mixedp-ic16 train data (https://huggingface.co/datasets/GilpinLab/base-mixedp-ic16). Specifically, these are ics 1-7, and this was due to an indexing error when we made this dataset.

Moreover, there are actually only 109 “ic1” trajectories in the entire “train” dataset; these are all for “pp0” i.e. the unperturbed original base systems.

files base systems number of perturbed base systems
base_mixedp_ic16/train-part1.parquet 32,996 112 5,781

The table below gives the number of trajectories for each initial condition (ic{1-7}) in base_mixedp_ic16/train-part1.parquet. Each ic{1-7} has fewer than the number of perturbed systems because some trajectories may not have passed our fixed integration time-limit, or our filters.

IC index rows
ic1 109
ic2 5,461
ic3 5,467
ic4 5,487
ic5 5,477
ic6 5,512
ic7 5,483
total 32,996

skew_mixedp_ic16 The dataset in skew_mixedp_ic16/train-part1.parquet contains only the first 8 initial conditions present in the full skew-mixedp-ic16 train data (https://huggingface.co/datasets/GilpinLab/skew-mixedp-ic16). Specifically, these are ics 0-7.

files distinct skew system parent pairs number of perturbed skew systems
skew_mixedp_ic16/train-part1.parquet 151,197 1,138 20,466

By "distinct skew system parent pairs" we refer to {SystemA driving SystemB} as a parent pair, and perturbations of the parameters of this system make the perturbed skew systems. Another distinct parent pair would be {SystemC driving System A} for example.

The table below gives the number of trajectories for each initial condition (ic{0-7}) in skew_mixedp_ic16/train-part1.parquet. Each ic{0-7} has fewer than the number of perturbed systems because some trajectories may not have passed our fixed integration time-limit, or our filters.

IC index rows
ic0 18,822
ic1 18,973
ic2 18,882
ic3 18,815
ic4 18,942
ic5 18,962
ic6 18,876
ic7 18,925
total 151,197

base40 Lastly, base40/train.parquet is exactly the same as https://huggingface.co/datasets/GilpinLab/base40 but with chunked row groups so it is streamable.

NOTE: the training_info.json files from our model training runs may mention "final_base40/train_z5_z10"; this was merged into "final_base40/train" which is uploaded here as base40/train.parquet, containing the union of the files.

files base systems (system, pp) pairs
base40/train.parquet 5,813 115 5,813

Summary As can be seen in our uploaded wandb log file from our original Panda-72M training run (panda72M-wandb-log.log), we trained on 190006 datasets i.e. arrow files (trajectories). 151,197 + 32,996 + 5,813 = 190,006.

There are many benefits to making these parquet files have chunked row groups. The schema, column order, dtypes, and row order remain unchanged; pq.read_table() returns a table identical to what it would return with a single row group. The benefits:

  1. HF viewer works because the Parquet file contains a page index to enable random access without having to load the entire row group
  2. Partial reads are possible. With multiple (hundreds) of row groups, datasets.load_dataset(..., streaming=True) and pq.ParquetFile.iter_batches() become usable instead of OOMing or doing a slow crawl on the full dataset
  3. Row-group statistics enable skipping. Since rows are sorted by _source_directory, each row group's min/max on that column is precise. A reader who wants just Lorenz-pp0 can now read a handful of row groups instead of reading the whole file.
  4. Parallel/distributed reads. pyarrow, dask, spark, polars all parallelize at row-group granularity. One row group = one thread, no matter how many cores.

Paper abstract:

Chaotic systems are intrinsically sensitive to small errors, challenging efforts to construct predictive data-driven models of real-world dynamical systems such as fluid flows or neuronal activity. Prior efforts comprise either specialized models trained separately on individual time series, or foundation models trained on vast time series databases with little underlying dynamical structure. Motivated by dynamical systems theory, we present Panda, Patched Attention for Nonlinear DynAmics. We train Panda on a novel synthetic, extensible dataset of 2 \times 10^4 chaotic dynamical systems that we discover using an evolutionary algorithm. Trained purely on simulated data, Panda exhibits emergent properties: zero-shot forecasting of unseen real world chaotic systems, and nonlinear resonance patterns in cross-channel attention heads. Despite having been trained only on low-dimensional ordinary differential equations, Panda spontaneously develops the ability to predict partial differential equations without retraining. We demonstrate a neural scaling law for differential equations, underscoring the potential of pretrained models for probing abstract mathematical domains like nonlinear dynamics.

Citation

BibTeX:

If you find our work valuable for your research, please cite us:

@inproceedings{
    lai2026panda,
    title={Panda: A pretrained forecast model for chaotic dynamics},
    author={Jeffrey B. Lai and Anthony Bao and William Gilpin},
    booktitle={The Fourteenth International Conference on Learning Representations},
    year={2026},
    url={https://openreview.net/forum?id=DgnsohAUMn}
}
Downloads last month
37

Models trained or fine-tuned on GilpinLab/dataset-panda72M-repro

Paper for GilpinLab/dataset-panda72M-repro