Skip to content

Speed up forecast download: parallelize and exclude unused forecasters #244

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: dev
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 42 additions & 14 deletions Report/create_reports.R
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ library("optparse")
library("dplyr")
library("evalcast")
library("lubridate")
library("bettermc")
library("parallel")

# TODO: Contains fixed versions of WIS component metrics, to be ported over to evalcast
# Redefines overprediction, underprediction and sharpness
Expand Down Expand Up @@ -30,25 +32,39 @@ prediction_cards_filepath <- case_when(

options(warn = 1)

# Requested forecasters that do not get included in final scores:
# Auquan-SEIR: Only predicts cumulative deaths
# CDDEP-ABM: No longer on Forecast Hub. Causes some warnings when trying to download.
# Ignore requested forecasters that do not get included in final scores:
# Auquan-SEIR: Cumulative deaths predictions only
# CDDEP-ABM: No longer on Forecast Hub. Trying to download causes errors and warnings.
# CDDEP-SEIR_MCMC: County-level predictions only
# CUBoulder-COVIDLSTM: County-level predictions only
# FAIR-NRAR: County-level predictions only
# HKUST-DNN: Only predicts cumulative deaths
# HKUST-DNN: Cumulative deaths predictions only
# ISUandPKU-vSEIdR: Folder but no forecasts on Forecast Hub
# PandemicCentral-COVIDForest: County-level predictions only
# UT_GISAG-SPDM: County-level predictions only
# WalmartLabsML-LogForecasting: Only predicts cumulative deaths
# WalmartLabsML-LogForecasting: Cumulative deaths predictions only
# Yu_Group-CLEP: County-level predictions only
drop_forecasters <- c(
"Auquan-SEIR",
"CDDEP-ABM",
"CDDEP-SEIR_MCMC",
"CUBoulder-COVIDLSTM",
"FAIR-NRAR",
"HKUST-DNN",
"ISUandPKU-vSEIdR",
"PandemicCentral-COVIDForest",
"UT_GISAG-SPDM",
"WalmartLabsML-LogForecasting",
"Yu_Group-CLEP"
)
forecasters <- unique(c(
get_covidhub_forecaster_names(designations = c("primary", "secondary")),
"COVIDhub-baseline", "COVIDhub-trained_ensemble", "COVIDhub-4_week_ensemble"
))
locations <- covidHubUtils::hub_locations
forecasters <- setdiff(forecasters, drop_forecasters)

# also includes "us", which is national level data
locations <- covidHubUtils::hub_locations
state_geos <- locations %>%
filter(nchar(.data$geo_value) == 2) %>%
pull(.data$geo_value)
Expand All @@ -59,14 +75,26 @@ signals <- c(
)

data_pull_timestamp <- now(tzone = "UTC")
predictions_cards <- get_covidhub_predictions(forecasters,
signal = signals,
ahead = 1:28,
geo_values = state_geos,
verbose = TRUE,
use_disk = TRUE
) %>%
filter(!(incidence_period == "epiweek" & ahead > 4))

cores <- detectCores()
if (is.na(cores)) {
warning("Could not detect the number of CPU cores; parallel mode disabled")
cores <- 1
}
options(mc.cores = max(floor(cores / 2), 1L))

print(paste("Getting forecasts for", length(forecasters), "forecasters."))
predictions_cards <- bettermc::mclapply(forecasters, function(forecaster) {
get_covidhub_predictions(forecaster,
signal = signals,
ahead = 1:28,
geo_values = state_geos,
verbose = TRUE,
use_disk = TRUE
) %>%
filter(!(incidence_period == "epiweek" & ahead > 4))
}) %>%
bind_rows()

options(warn = 0)

Expand Down