@@ -30,24 +30,27 @@ prediction_cards_filepath <- case_when(
30
30
31
31
options(warn = 1 )
32
32
33
- # Requested forecasters that do not get included in final scores:
34
- # Auquan-SEIR: Only predicts cumulative deaths
35
- # CDDEP-SEIR_MCMC: County-level predictions only
36
- # CUBoulder-COVIDLSTM: County-level predictions only
37
- # FAIR-NRAR: County-level predictions only
38
- # HKUST-DNN: Only predicts cumulative deaths
39
- # PandemicCentral-COVIDForest: County-level predictions only
40
- # UT_GISAG-SPDM: County-level predictions only
41
- # WalmartLabsML-LogForecasting: Only predicts cumulative deaths
42
- # Yu_Group-CLEP: County-level predictions only
43
33
forecasters <- unique(c(
44
34
get_covidhub_forecaster_names(designations = c(" primary" , " secondary" )),
45
35
" COVIDhub-baseline" , " COVIDhub-trained_ensemble" , " COVIDhub-4_week_ensemble"
46
36
)) %> %
47
- # Drop a couple invalid forecasters
37
+ # Drop invalid forecasters
48
38
setdiff(c(
39
+ # Forecasters that have no data on Forecast Hub
49
40
" CDDEP-ABM" , # No longer on Forecast Hub. Causes some warnings when trying to download.
50
- " ISUandPKU-vSEIdR" # Folder but no forecasts on Forecast Hub
41
+ " ISUandPKU-vSEIdR" , # Folder but no forecasts on Forecast Hub
42
+
43
+ # Forecasters that don't qualify for inclusion in the dashboard (wrong geo
44
+ # level, wrong target variable)
45
+ " Auquan-SEIR" , # Only predicts cumulative deaths
46
+ " CDDEP-SEIR_MCMC" , # County-level predictions only
47
+ " CUBoulder-COVIDLSTM" , # County-level predictions only
48
+ " FAIR-NRAR" , # County-level predictions only
49
+ " HKUST-DNN" , # Only predicts cumulative deaths
50
+ " PandemicCentral-COVIDForest" , # County-level predictions only
51
+ " UT_GISAG-SPDM" , # County-level predictions only
52
+ " WalmartLabsML-LogForecasting" , # Only predicts cumulative deaths
53
+ " Yu_Group-CLEP" # County-level predictions only
51
54
))
52
55
53
56
locations <- covidHubUtils :: hub_locations
0 commit comments