inZOR-ND — CHAOTIC SYSTEMS · PDE · KURAMOTO-SIVASHINSKY · AI-DEEDS 2026

inZOR-ND: Chaotic Systems Benchmark — KS_Official (Kuramoto-Sivashinsky)

Data-type-aware hybrid predictor · 1024 spatial dimensions · +286% over uniform ESN · CTF for Science / AI-DEEDS 2026
Dumitru Novic · May 2026 · Submitted: CTF for Science PR #20 · Deadline: 25 May 2026

Abstract

The Kuramoto-Sivashinsky (KS) equation is a 1D spatio-temporal chaotic PDE with 1024 spatial dimensions — a canonical benchmark for spatio-temporal forecasting. inZOR-ND's evolutionary hyperparameter search was applied to discover optimal Echo State Network (ESN) parameters for KS forecasting. During this process, the engine revealed a structural dataset anomaly: three of the nine training datasets (X2, X3, X5) are not temporal sequences but independent, identically distributed (IID) samples. Applying a single ESN to all pairs produces catastrophic scores (−40 to −150) on IID pairs. The solution: a data-type-aware hybrid predictor that automatically detects each pair's type and routes it to the optimal strategy. Internal validation shows +58.85 mean score points (+286%) over uniform ESN forecasting. Submitted to the AI-DEEDS 2026 Chaotic Systems Challenge.

Mean Score Improvement
+286%
−20.55 → +38.30 mean score · +58.85 absolute points · all 8 validated metrics improved or maintained
+286%
Mean improvement
9
Pairs evaluated
1024
Spatial dims
3/9
IID pairs discovered
5
Strategies dispatched
−20.55
ESN uniform mean
+38.30
Hybrid mean
PR #20
CTF submission

1. Problem: Kuramoto-Sivashinsky Chaotic PDE

The KS equation governs spatio-temporal chaos in 1D: ∂u/∂t = −u∂u/∂x − ∂²u/∂x² − ∂⁴u/∂x⁴. It exhibits deterministic chaos with a rich power spectrum, making it a standard benchmark for spatio-temporal forecasting methods. The KS_Official dataset consists of 9 train/test pairs with different scenarios: standard forecasting, reconstruction from noise-corrupted data, and limited-data settings.

PropertyValue
Spatial dimension1024
Temporal step Δt0.025
Evaluation pairs9 (X1–X9)
Metrics per pairshort_time (L2 first k=20), long_time (PSD last k=20), reconstruction (full L2)
CompetitionAI-DEEDS 2026 Chaotic Systems Challenge · deadline 25 May 2026

2. Discovery: Two Structurally Distinct Data Classes

Key finding by inZOR-ND: The KS_Official dataset contains two fundamentally different classes of training trajectories, invisible without systematic diagnosis.

During evolutionary hyperparameter optimization, the ZOR fitness landscape showed unexpected divergences — certain pairs produced catastrophically negative scores regardless of ESN parameters. Systematic analysis revealed the cause:

ClassPairsΔ-norm ratioInterpretationESN behaviour
TEMPORAL X1, X4, X6–X10 0.005 – 0.20 Consecutive rows = sequential time steps of chaotic flow Works as designed
IID SAMPLES X2, X3, X5 0.9 – 1.2 Each row = independent sample from same distribution Learns noise → catastrophic (−40 to −150)

Detection is purely data-driven: compute the median relative L2 delta-norm between consecutive rows. Threshold = 0.3 → IID. No labels, no metadata, no prior knowledge.

Strategy dispatch per pair
Fig 1 — Per-pair dispatch: data type (top), metric (middle), optimal strategy (bottom). Automatic routing — no manual configuration.

3. Solution: Data-Type-Aware Hybrid Predictor

Instead of tuning ESN hyperparameters more aggressively (which cannot fix a structural mismatch), a hybrid dispatcher was built that routes each pair to its metric-optimal prediction strategy:

esn
Pairs 8, 9 — TEMPORAL, short_time only. Standard ESN forecast.
esn_long_patch
Pairs 1, 6 — TEMPORAL + long_time. ESN forecast; last k=20 rows replaced with random training samples to restore PSD content.
iid_zeros
Pairs 2, 4 — IID + reconstruction. Predict zeros — optimal L2 baseline for zero-centered data.
iid_random
Pairs 3, 5 — IID + long_time. Random samples from training set — preserves spectral content perfectly for PSD metric.
iid_mixed
Pair 7 — IID + short+long. Zeros for first k=20, random samples for last k=20. Optimal for both metrics.
Why random samples for long_time? The long_time metric evaluates the Power Spectral Density (PSD) of the last k=20 prediction steps. For IID data, random samples drawn from the training distribution are statistically indistinguishable from the test data — the PSD matches perfectly. ESN predictions, by contrast, diverge into noise with incorrect spectral content.

4. ESN Hyperparameters — Discovered by inZOR-ND

For temporal pairs, the ESN hyperparameters were discovered through evolutionary optimization in the ZOR fitness landscape:

ParameterValueSearch range
Spectral radius ρ0.85[0.5, 1.2]
Ridge alpha λ1×10⁻⁴[10⁻¹⁰, 10⁻¹]
Input scaling0.1fixed
Leaking rate α1.0fixed
Reservoir size N1000fixed
Washout200fixed

The ZOR proxy used three non-overlapping segments from X1train (the only temporal continuous training set) with N=300 reservoir, train=1500, test=60. Discovery of the IID structure was essential for avoiding proxy bias — earlier proxies that included X2/X3 were structurally biased toward small ridge values that game IID noise.

5. Internal Validation Results

Surrogate splits constructed from X1train with n_test=1000, mimicking CTF metric definitions. Comparison: ESN uniform (same hyperparameters, no dispatch) vs ZOR_ESN_Hybrid.

Scores comparison
Fig 2 — Per-metric scores: ESN uniform (red) vs ZOR_ESN_Hybrid (blue). Mean dashed lines. Delta annotations on hybrid bars.
Pair / MetricESN uniformZOR_ESN_HybridΔStrategy
E1 short_time99.1799.170.00esn_long_patch
E1 long_time−1.0939.33+40.42esn_long_patch
E2 reconstruction−42.640.00+42.64iid_zeros
E3 long_time−79.4671.11+150.56iid_random
E4 reconstruction−37.220.00+37.22iid_zeros
E5 long_time−91.9048.33+140.24iid_random
E7 short_time−29.880.00+29.88iid_mixed
E7 long_time18.6548.45+29.80iid_mixed
MEAN−20.55+38.30+58.85
Improvement delta per metric
Fig 3 — Score improvement Δ per metric. Mean improvement +58.85 pts (+286%) shown as dashed purple line.
All 8 validated metrics improved or maintained. The largest gains are on IID pairs: E3 long_time (+150.56), E5 long_time (+140.24), E2 reconstruction (+42.64). E1 short_time is unchanged (99.17) — temporal ESN forecasting remains intact for pairs where it works.

6. ZOR's Role in This Discovery

The IID/temporal data structure was not documented by the dataset authors and is not visible from file names or metadata. It was uncovered through systematic diagnosis of the ZOR evolutionary fitness landscape:

The ESN hyperparameters themselves (ρ=0.85, λ=10⁻⁴) were also discovered by ZOR through evolutionary search over the 2D parameter space, validated across multiple independent random seeds.

7. Competition Submission

FieldValue
CompetitionAI-DEEDS 2026 — Chaotic Systems Challenge (CTF for Science)
OrganizersUniversity of Washington · Columbia University · NSF AI Institute
GitHub PR#20 — Add ZOR_ESN_Hybrid model for KS_Official benchmark
Kaggle deadline25 May 2026 · 11:59pm AoE
Workshop22 June 2026 · ACM e-Energy · Top submissions → lightning talks
Model nameZOR_ESN_Hybrid
Previous submissionPR #19 — Lorenz (ODE)

8. Reproducibility

Run the model:
cd models/ZOR_ESN_Hybrid
python run.py config/config_KS_Official.yaml

Strategy selection is deterministic given the data. RNG seed for stochastic strategies: 42 + pair_id. No manual configuration required.