Spaces:
Running
Running
Oleksandr Shchur
commited on
Commit
·
54941f4
1
Parent(s):
d8795b1
Add results for TimesFM-2.0
Browse files- app.py +1 -0
- src/about.py +1 -1
- src/formatting.py +2 -1
app.py
CHANGED
@@ -30,6 +30,7 @@ summary_urls = [
|
|
30 |
"https://raw.githubusercontent.com/autogluon/fev/refs/heads/main/benchmarks/chronos_zeroshot/results/moirai_small.csv",
|
31 |
"https://raw.githubusercontent.com/autogluon/fev/refs/heads/main/benchmarks/chronos_zeroshot/results/seasonal_naive.csv",
|
32 |
"https://raw.githubusercontent.com/autogluon/fev/refs/heads/main/benchmarks/chronos_zeroshot/results/timesfm.csv",
|
|
|
33 |
]
|
34 |
|
35 |
rename_cols = {
|
|
|
30 |
"https://raw.githubusercontent.com/autogluon/fev/refs/heads/main/benchmarks/chronos_zeroshot/results/moirai_small.csv",
|
31 |
"https://raw.githubusercontent.com/autogluon/fev/refs/heads/main/benchmarks/chronos_zeroshot/results/seasonal_naive.csv",
|
32 |
"https://raw.githubusercontent.com/autogluon/fev/refs/heads/main/benchmarks/chronos_zeroshot/results/timesfm.csv",
|
33 |
+
"https://raw.githubusercontent.com/autogluon/fev/refs/heads/main/benchmarks/chronos_zeroshot/results/timesfm-2.0.csv",
|
34 |
]
|
35 |
|
36 |
rename_cols = {
|
src/about.py
CHANGED
@@ -32,7 +32,7 @@ For instructions on how to evaluate your model using `fev` and contribute your r
|
|
32 |
CHRONOS_BENCHMARK = """
|
33 |
## Chronos Benchmark II results
|
34 |
|
35 |
-
This tab contains results for various forecasting models on the
|
36 |
|
37 |
These datasets were used for zero-shot evaluation of Chronos models (i.e., Chronos models were not trained on these datasets), but some other models did include certain datasets in their training corpus.
|
38 |
|
|
|
32 |
CHRONOS_BENCHMARK = """
|
33 |
## Chronos Benchmark II results
|
34 |
|
35 |
+
This tab contains results for various forecasting models on the 27 datasets used in Benchmark II in the publication [Chronos: Learning the Language of Time Series](https://arxiv.org/abs/2403.07815).
|
36 |
|
37 |
These datasets were used for zero-shot evaluation of Chronos models (i.e., Chronos models were not trained on these datasets), but some other models did include certain datasets in their training corpus.
|
38 |
|
src/formatting.py
CHANGED
@@ -15,7 +15,8 @@ MODEL_URLS = {
|
|
15 |
"moirai_large": "Salesforce/moirai-1.1-R-large",
|
16 |
"moirai_base": "Salesforce/moirai-1.1-R-base",
|
17 |
"moirai_small": "Salesforce/moirai-1.1-R-small",
|
18 |
-
"timesfm": "google/timesfm-1.0-200m",
|
|
|
19 |
}
|
20 |
|
21 |
|
|
|
15 |
"moirai_large": "Salesforce/moirai-1.1-R-large",
|
16 |
"moirai_base": "Salesforce/moirai-1.1-R-base",
|
17 |
"moirai_small": "Salesforce/moirai-1.1-R-small",
|
18 |
+
"timesfm": "google/timesfm-1.0-200m-pytorch",
|
19 |
+
"timesfm-2.0": "google/timesfm-2.0-500m-pytorch",
|
20 |
}
|
21 |
|
22 |
|