shchuro commited on
Commit
789fc65
·
1 Parent(s): 6466de3

Add TTM-R2 zeroshot results

Browse files
Files changed (2) hide show
  1. app.py +1 -0
  2. src/formatting.py +1 -0
app.py CHANGED
@@ -31,6 +31,7 @@ summary_urls = [
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 = {
 
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
+ "https://raw.githubusercontent.com/autogluon/fev/refs/heads/main/benchmarks/chronos_zeroshot/results/ttm-r2.csv",
35
  ]
36
 
37
  rename_cols = {
src/formatting.py CHANGED
@@ -17,6 +17,7 @@ MODEL_URLS = {
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
 
 
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
+ "ttm-r2": "ibm-granite/granite-timeseries-ttm-r2",
21
  }
22
 
23