Improve dataset card: add task category, links, and usage
#2
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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
|
|
@@ -14,13 +21,20 @@ This corpus enables researchers to train **custom meta predictors** — models t
|
|
| 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 |
-
##
|
|
|
|
|
|
|
| 18 |
|
| 19 |
-
|
|
|
|
|
|
|
| 20 |
|
| 21 |
-
|
|
|
|
| 22 |
|
| 23 |
-
|
|
|
|
|
|
|
| 24 |
|
| 25 |
## 📝 Citation
|
| 26 |
|
|
|
|
| 1 |
+
---
|
| 2 |
+
task_categories:
|
| 3 |
+
- time-series-forecasting
|
| 4 |
+
---
|
| 5 |
+
|
| 6 |
# TSCOMP Corpus
|
| 7 |
|
| 8 |
+
[Paper](https://huggingface.co/papers/2605.26562) | [GitHub](https://github.com/SUFE-AILAB/TSCOMP)
|
| 9 |
+
|
| 10 |
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.
|
| 11 |
|
| 12 |
## Overview
|
|
|
|
| 21 |
|
| 22 |
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.
|
| 23 |
|
| 24 |
+
## Sample Usage
|
| 25 |
+
|
| 26 |
+
The corpus is designed to be used for meta-learning. You can use the provided code in the GitHub repository to run experiments or extract features:
|
| 27 |
|
| 28 |
+
```bash
|
| 29 |
+
# Run meta learning experiments
|
| 30 |
+
python meta/run.py --mode simple --test_dataset ETTh2 --meta_model_type mlp
|
| 31 |
|
| 32 |
+
# Extract meta-features for datasets
|
| 33 |
+
python meta/meta_features/get_meta_features_LTF.py --meta_feature_type tabpfn
|
| 34 |
|
| 35 |
+
# Apply meta selection to new datasets
|
| 36 |
+
python meta/run_custom.py --new_dataset my_dataset --checkpoint_path <path> --new_dataset_path <csv_path> --scripts_root <scripts_dir>
|
| 37 |
+
```
|
| 38 |
|
| 39 |
## 📝 Citation
|
| 40 |
|