| Description |
| This is week 5 of Kaggle's COVID-19 forecasting series, following the Week 4 competition. This competition has some changes from prior weeks - be sure to check the Evaluation and Data pages for more details. All of the prior discussion forums have been migrated to this competition for continuity. |
|
|
| Background |
| The White House Office of Science and Technology Policy (OSTP) pulled together a coalition of research groups and companies (including Kaggle) to prepare the COVID-19 Open Research Dataset (CORD-19) to attempt to address key open scientific questions on COVID-19. Those questions are drawn from the National Academies of Sciences, Engineering, and Medicine’s (NASEM) and the World Health Organization (WHO). |
|
|
| The Challenge |
| Kaggle is launching a companion COVID-19 forecasting challenge to help answer a subset of the NASEM/WHO questions. While the challenge involves developing quantile estimate intervals for confirmed cases and fatalities between May 12 and June 7 by region, the primary goal isn't only to produce accurate forecasts. It’s also to identify factors that appear to impact the transmission rate of COVID-19. You are encouraged to pull in, curate, and share data sources that might be helpful. If you find variables that look like they impact the transmission rate, please share your findings in a notebook. |
|
|
| As the data becomes available, we will update the leaderboard with live results based on data made available from the Johns Hopkins University Center for Systems Science and Engineering (JHU CSSE). We have received support and guidance from health and policy organizations in launching these challenges. We're hopeful the Kaggle community can make valuable contributions to developing a better understanding of factors that impact the transmission of COVID-19. |
|
|
| Companies and Organizations |
| There is also a call to action for companies and other organizations: If you have datasets that might be useful, please upload them to Kaggle’s dataset platform and reference them in this forum thread. That will make them accessible to those participating in this challenge and a resource to the wider scientific community. |
|
|
| Acknowledgements |
| JHU CSSE for making the data available to the public. The White House OSTP for pulling together the key open questions. The image comes from the Center for Disease Control. |
| This is a Code Competition. Refer to Code Requirements for details. |
|
|
| Evaluation |
| Public and Private Leaderboard |
| To have a public leaderboard for this forecasting task, we will be using data from 7 days before to 7 days after the competition launch. Only use data prior to 2020-04-27 for predictions on the public leaderboard period. Use up to and including the most recent data for predictions on the private leaderboard period. |
|
|
| Public Leaderboard Period: 2020-04-27 - 2020-05-11 |
| Private Leaderboard Period: 2020-05-13 - 2020-06-10 |
|
|
| Evaluation |
| Submissions are scored using the Weighted Pinball Loss. |
|
|
| \[ \text{score} = \frac{1}{N_{f}} \sum_{f} w_{f} \frac{1}{N_{\tau}} \sum_{\tau} L_{\tau}(y_i, \hat{y}_{i}) \] |
|
|
| where: |
|
|
| \[ L_{\tau}(y, \hat{y}) = \begin{cases} (y - \hat{y}) \tau & \textrm{if } y \geq \hat{y} \\ (\hat{y} - y) (1 - \tau) & \textrm{if } \hat{y} > y \end{cases} \] |
|
|
| and: |
|
|
| - \( y \) is the ground truth value |
| - \( \hat{y} \) is the predicted value |
| - \( \tau \) is the quantile to be predicted, e.g., one of [0.05, 0.50, 0.95] |
| - \( N_{f} \) is the total number of forecast (f) day x target combinations |
| - \( N_{\tau} \) is the total number of quantiles to predict |
| - \( w \) is a weighting factor |
|
|
| Weights are calculated as follows: |
| - ConfirmedCases: \( \log(\text{population}+1)^{-1} \) |
| - Fatalities: \( 10 \cdot \log(\text{population}+1)^{-1} \) |
|
|
| Submission File |
| For each ForecastId in the test set, you'll predict the 0.05, 0.50, and 0.95 quantiles for daily COVID-19 cases and fatalities to date. The file should contain a header and have the following format: |
|
|
| ForecastId_Quantile, TargetValue |
| 1_0.05, 1 |
| 1_0.50, 1 |
| 1_0.95, 1 |
| 2_0.05, 1 |
| etc. |
|
|
| You will get the ForecastId_Quantile for the corresponding date and location from the test.csv file. |
|
|
| Dataset Description |
| In this challenge, you will be predicting the daily number of confirmed COVID-19 cases in various locations across the world, as well as the number of resulting fatalities, for future dates. This latest challenge includes US state county data. |
|
|
| Files |
| - train.csv - the training data (you are encouraged to join in many more useful external datasets) |
| - test.csv - the dates to predict; there is a week of overlap with the training data for the initial Public leaderboard. Once submissions are paused, the Public leaderboard will update based on the last 28 days of predicted data. |
| - submission.csv - a sample submission in the correct format; again, predictions should be daily |
|
|
| Data Source |
| This evaluation data for this competition comes from John Hopkins CSSE, which is uninvolved in the competition. See their README for a description of how the data was collected. They are currently updating the data daily. |