Time Series Forecasting
TiRex-2
podestplatz commited on
Commit
45b9cfa
verified
1 Parent(s): f500c26

Add arxiv link and citation bibtex

Browse files
Files changed (1) hide show
  1. README.md +23 -8
README.md CHANGED
@@ -13,7 +13,7 @@ license: apache-2.0
13
 
14
  This repository provides the pretrained TiRex-2 model and inference code for zero-shot
15
  multivariate forecasting with past and future-known covariates, as introduced in [TiRex-2:
16
- Generalizing TiRex to Multivariate Data and Streaming](ADD ARXIV LINK).
17
 
18
  TiRex-2 is a pretrained time series foundation model that forecasts one or many target
19
  variates directly from their history, optionally conditioned on past and future-known
@@ -64,12 +64,27 @@ For a more **interactive demo of TiRex-2**, we also provide a [quick-start](http
64
 
65
  ## Cite
66
  If you use TiRex-2 in your research, please cite our work:
67
- TBD
 
 
 
 
 
 
 
 
 
 
68
 
69
  ## Other versions:
70
- Alongside this pretrained checkpoint we also provide three other versions:
71
- - [TiRex-2-g](https://huggingface.co/NX-AI/TiRex-2-gifteval-zs): we took care to exclude any overlap with the GiftEval
72
- datasets ([pretrain](https://huggingface.co/datasets/Salesforce/GiftEvalPretrain) and [evaluation](https://huggingface.co/datasets/Salesforce/GiftEval)).
73
- - [TiRex-2-gp](https://huggingface.co/NX-AI/TiRex-2-gifteval-pretrain): here we included the [GiftEval-Pretrain collection](https://huggingface.co/datasets/Salesforce/GiftEvalPretrain) in our pretraining corpus.
74
- - [TiRex-2-f](https://huggingface.co/NX-AI/TiRex-2-fevbench): for the fev-benchmark we took the same measures as for
75
- GiftEval and removed all [fev-bench eval datasets](https://huggingface.co/datasets/autogluon/fev_datasets) from our pretraining corpus to produce this checkpoint.
 
 
 
 
 
 
13
 
14
  This repository provides the pretrained TiRex-2 model and inference code for zero-shot
15
  multivariate forecasting with past and future-known covariates, as introduced in [TiRex-2:
16
+ Generalizing TiRex to Multivariate Data and Streaming](https://arxiv.org/abs/2607.01204).
17
 
18
  TiRex-2 is a pretrained time series foundation model that forecasts one or many target
19
  variates directly from their history, optionally conditioned on past and future-known
 
64
 
65
  ## Cite
66
  If you use TiRex-2 in your research, please cite our work:
67
+ ```bibtex
68
+ @misc{podest2026tirex2generalizingtirexmultivariate,
69
+ title={TiRex-2: Generalizing TiRex to Multivariate Data and Streaming},
70
+ author={Patrick Podest and Marco Pichler and Elias B眉rger and Levente Z贸lyomi and Bernhard Voggenberger and Wilhelm Berghammer and Daniel Klotz and Sebastian B枚ck and G眉nter Klambauer and Sepp Hochreiter},
71
+ year={2026},
72
+ eprint={2607.01204},
73
+ archivePrefix={arXiv},
74
+ primaryClass={cs.LG},
75
+ url={https://arxiv.org/abs/2607.01204},
76
+ }
77
+ ```
78
 
79
  ## Other versions:
80
+ Alongside this pretrained checkpoint, we release decontaminated versions to enable fair
81
+ zero-shot evaluation on specific benchmarks by excluding their data from pretraining:
82
+ - [TiRex-2-g](https://huggingface.co/NX-AI/TiRex-2-gifteval-zs): excludes any overlap with
83
+ the GiftEval datasets ([pretrain](https://huggingface.co/datasets/Salesforce/GiftEvalPretrain)
84
+ and [evaluation](https://huggingface.co/datasets/Salesforce/GiftEval)) from pretraining.
85
+ - [TiRex-2-gp](https://huggingface.co/NX-AI/TiRex-2-gifteval-pretrain): includes the
86
+ [GiftEval-Pretrain collection](https://huggingface.co/datasets/Salesforce/GiftEvalPretrain)
87
+ in the pretraining corpus (for comparison against TiRex-2-g).
88
+ - [TiRex-2-f](https://huggingface.co/NX-AI/TiRex-2-fevbench): excludes all
89
+ [fev-bench eval datasets](https://huggingface.co/datasets/autogluon/fev_datasets)
90
+ from pretraining, using the same approach as for GiftEval.