tensorlink-dev commited on
Commit
4b3a754
·
verified ·
1 Parent(s): 6d4b63f

refresh card (as_of=2026-07-16)

Browse files
Files changed (1) hide show
  1. README.md +41 -1
README.md CHANGED
@@ -1,3 +1,43 @@
1
  ---
2
- license: mit
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: cc-by-4.0
3
+ pretty_name: cascade held-out eval pool (24h-lagged reveal)
4
+ tags:
5
+ - time-series
6
+ - forecasting
7
+ - benchmark
8
  ---
9
+
10
+ # cascade eval pool — lagged public reveal
11
+
12
+ Daily snapshots of the **held-out evaluation pool** used by the
13
+ [cascade](https://github.com/TensorLink-AI/cascade) subnet, built from the
14
+ [tsbench-forge](https://github.com/tensorlink-dev/TSBench-Forge) live catalog of
15
+ real public time series across the 7 GIFT-Eval domains.
16
+
17
+ **Each snapshot is revealed 24h AFTER it was used for scoring** (`as_of` is a
18
+ closed UTC day). Because the pool rotates daily, a released snapshot is always
19
+ for a round that is already scored — it lets anyone **reproduce the leaderboard**
20
+ without exposing the round currently in play.
21
+
22
+ ## Layout
23
+
24
+ ```
25
+ snapshots/<YYYY-MM-DD>/ one folder per revealed day (as_of)
26
+ <series_id>.npy float32, freshest context_length + horizon points
27
+ metadata.json {series_id: {freq, seasonal_period, domain, source}}
28
+ provenance.json build config (context_length, horizon, builder_version)
29
+ ```
30
+
31
+ Scoring is identity-agnostic: MASE uses `seasonal_period`, CRPS/WQL use the
32
+ values + a model's quantiles, and the KOTH cluster-bootstrap groups windows by
33
+ `source`. Re-cut windows of `context_length + horizon`, forecast the horizon,
34
+ and the metrics reproduce byte-for-byte.
35
+
36
+ ## Latest snapshot — `2026-07-16`
37
+
38
+ - **series:** 228
39
+ - **domains:** nature=86, sales=63, econ_fin=33, energy=17, web_cloudops=15, healthcare=13, transport=1
40
+ - **cadences:** D=96, 15min=48, min=21, 6min=16, 10min=13, 30min=11, H=11, 5min=6, 240S=6
41
+
42
+ > This is an **evaluation** set, not training data. Publishing it to train on
43
+ > would contaminate the benchmark it exists to measure.