Braudo commited on
Commit
a011158
·
verified ·
1 Parent(s): 80e3874

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +36 -3
README.md CHANGED
@@ -1,3 +1,36 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # TSCOMP Corpus
2
+
3
+ The TSCOMP (Time-Series Component-level Benchmarking) Corpus is a curated collection of evaluation results from systematic component-level experiments in deep multivariate time-series forecasting.
4
+
5
+ ## Overview
6
+
7
+ The corpus contains **metrics.npy** files from over 20,000 experimental runs, each recording the performance of a specific model component configuration (e.g., normalization layers, attention mechanisms, patching strategies) across multiple forecasting benchmarks.
8
+
9
+ ## Purpose
10
+
11
+ This corpus enables researchers to train **custom meta predictors** — models that learn to predict the best component configuration for a given time-series dataset, without needing to run expensive ablation studies themselves.
12
+
13
+ ## Dataset Structure
14
+
15
+ Each subdirectory in the archive corresponds to a downstream dataset (e.g., ECL, ETTh1, Exchange, weather). Within each dataset folder, individual experiment directories encode the full component configuration in their names, and **metrics.npy** contains the evaluation metrics for that run.
16
+
17
+ ## Source
18
+
19
+ This corpus is generated from the official TSCOMP project:
20
+
21
+ **https://github.com/SUFE-AILAB/TSCOMP**
22
+
23
+ For more details on the experimental framework and component taxonomy, please refer to the associated paper.
24
+
25
+ ## 📝 Citation
26
+
27
+ If you find this work useful, please consider citing:
28
+
29
+ ```bibtex
30
+ @inproceedings{liang2025beyond,
31
+ title={Beyond Holistic Models: Systematic Component-level Benchmarking of Deep Multivariate Time-Series Forecasting},
32
+ author={Liang, Shuang and Hou, Chaochuan and Yao, Xu and Wang, Shiping and Huang, Hailiang and Han, Songqiao and Jiang, Minqi},
33
+ booktitle={Proceedings of the 31st ACM SIGKDD Conference on Knowledge Discovery and Data Mining (KDD)},
34
+ year={2025}
35
+ }
36
+ ```