Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,48 @@
|
|
| 1 |
---
|
| 2 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
library_name: pytorch
|
| 3 |
+
tags:
|
| 4 |
+
- time-series
|
| 5 |
+
- time-series-forecasting
|
| 6 |
+
- foundation-models
|
| 7 |
+
- retrieval-augmented-generation
|
| 8 |
+
- rag
|
| 9 |
---
|
| 10 |
+
|
| 11 |
+
# RAEF
|
| 12 |
+
|
| 13 |
+
**Retrieval-Augmented Extended Forecasting**
|
| 14 |
+
|
| 15 |
+
Official implementation of:
|
| 16 |
+
|
| 17 |
+
**Model-Agnostic Retrieval-Augmented Extended Forecasting for Time Series**
|
| 18 |
+
|
| 19 |
+
📄 Paper:
|
| 20 |
+
https://arxiv.org/abs/2608.14054
|
| 21 |
+
|
| 22 |
+
💻 GitHub:
|
| 23 |
+
https://github.com/jpvilla1990/raef
|
| 24 |
+
|
| 25 |
+
## Overview
|
| 26 |
+
|
| 27 |
+
RAEF is a model-agnostic retrieval-augmented inference framework
|
| 28 |
+
for time-series foundation models.
|
| 29 |
+
|
| 30 |
+
The method retrieves relevant historical time series directly
|
| 31 |
+
in input space and uses concatenation-based aggregation to
|
| 32 |
+
extend the forecasting context.
|
| 33 |
+
|
| 34 |
+
## Code
|
| 35 |
+
|
| 36 |
+
The complete source code and experiments are available on GitHub:
|
| 37 |
+
|
| 38 |
+
https://github.com/jpvilla1990/raef
|
| 39 |
+
|
| 40 |
+
## Citation
|
| 41 |
+
|
| 42 |
+
```bibtex
|
| 43 |
+
@article{villa2026modelagnostic,
|
| 44 |
+
title={Model-Agnostic Retrieval-Augmented Extended Forecasting for time series},
|
| 45 |
+
author={Villa Serna, Juan Pablo and Asthana, Rohan and Belagiannis, Vasileios},
|
| 46 |
+
journal={arXiv preprint arXiv:2608.14054},
|
| 47 |
+
year={2026}
|
| 48 |
+
}
|