Skip to content

Commit 6b9a20f

Browse files
committed
drop forecasters that don't qualify for inclusion
1 parent af5a97f commit 6b9a20f

File tree

1 file changed

+15
-12
lines changed

1 file changed

+15
-12
lines changed

Report/create_reports.R

Lines changed: 15 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -30,24 +30,27 @@ prediction_cards_filepath <- case_when(
3030

3131
options(warn = 1)
3232

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
4333
forecasters <- unique(c(
4434
get_covidhub_forecaster_names(designations = c("primary", "secondary")),
4535
"COVIDhub-baseline", "COVIDhub-trained_ensemble", "COVIDhub-4_week_ensemble"
4636
)) %>%
47-
# Drop a couple invalid forecasters
37+
# Drop invalid forecasters
4838
setdiff(c(
39+
# Forecasters that have no data on Forecast Hub
4940
"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
5154
))
5255

5356
locations <- covidHubUtils::hub_locations

0 commit comments

Comments
 (0)