Add model card
Browse files
README.md
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
library_name: xgboost
|
| 4 |
+
tags:
|
| 5 |
+
- time-series
|
| 6 |
+
- time-series-forecasting
|
| 7 |
+
- gift-eval
|
| 8 |
+
- xgboost
|
| 9 |
+
- foundation-models
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
+
# TimeRouter — 5-seed OvA Router Checkpoints (K=4 pool)
|
| 13 |
+
|
| 14 |
+
Trained **One-vs-All XGBoost router** weights for
|
| 15 |
+
[TimeRouter](https://github.com/UConn-DSIS/TimeRouter), the GIFT-EVAL submission that
|
| 16 |
+
routes among **4 frozen time-series foundation models** — Chronos-2, FlowState,
|
| 17 |
+
PatchTST-FM, Sundial — with a margin/diversity gate and a CV-inverse-weighted fallback.
|
| 18 |
+
|
| 19 |
+
**LB MASE = 0.6746** on the full 97-config GIFT-EVAL test suite.
|
| 20 |
+
|
| 21 |
+
## Files
|
| 22 |
+
|
| 23 |
+
| File | Description |
|
| 24 |
+
|---|---|
|
| 25 |
+
| `seed42.json` … `seed46.json` | 5-seed XGBoost OvA ensemble. 305-dim features, 400 trees × depth 8 × lr 0.05 × subsample 0.8, `random_state ∈ {42..46}`, `tree_method="hist"`. |
|
| 26 |
+
| `pool_metadata.json` | Pool config (`{chronos, flowstate, patchtst_fm, sundial}`), 305-feature column order, and gate thresholds `(tau_m, tau_d) = (0.15, 0.02)`. |
|
| 27 |
+
|
| 28 |
+
## Usage
|
| 29 |
+
|
| 30 |
+
These are the checkpoints loaded by `gift_eval/run_eval.py --ckpt-dir <this folder>` in the
|
| 31 |
+
[TimeRouter repository](https://github.com/UConn-DSIS/TimeRouter); see its README for the
|
| 32 |
+
full two-environment setup and run instructions. Requires `xgboost >= 2.x`.
|
| 33 |
+
|
| 34 |
+
```python
|
| 35 |
+
from huggingface_hub import snapshot_download
|
| 36 |
+
ckpt_dir = snapshot_download("nkh/timerouter-v1")
|
| 37 |
+
# then: python gift_eval/run_eval.py --ckpt-dir $ckpt_dir ...
|
| 38 |
+
```
|
| 39 |
+
|
| 40 |
+
## Citation
|
| 41 |
+
|
| 42 |
+
If you use these checkpoints, please cite the TimeRouter repository
|
| 43 |
+
(UConn Data Science and Intelligent System (DSIS) Research Lab).
|