What is the Coronavirus Death Rate with Hyperparameter Tuning
 Examine the death rate and time to death/recovery distribution with Python

Lianne & Justin

Lianne & Justin

covid-19 death rate breaking life
Source: Adobe Stock

In this post, we dive into the coronavirus data using a machine learning algorithm: hyperparameter tuning.

You’ll see the step-by-step procedures of how to find the parameters of a model that is best fitting the COVID-19 data.

The goal is to estimate:

  • the death rate, aka case fatality ratio (CFR) and
  • the distribution of time from symptoms to death/recovery.

If you want:

  • more insights about coronavirus
  • or to see an example of hyperparameter tuning/optimization in Python

take a look!

Let’s roll.



The dataset we are using is COVID-19 Complete Dataset from Kaggle. It includes the number of confirmed, death, and recovered cases daily across the globe.

Yes, we know the numbers are not accurate due to various reasons. But let’s leave that concern out for this project.

And to simplify the analysis, we zoom into China’s Hubei province, the first heavily affected region.

covid-19 complete dataset kaggle

Step #1: Exploring the Data: COVID-19

To begin the project, let’s read the data into Python and take a look.

covid-19 dataset around the globe

The dataset has 5,822 rows and 8 features. The rows represent daily data for different provinces/states from different countries/regions. While the features are:

  • Province/State: the province/state of the location
  • Country/Region: the country/region of the location
  • Lat: latitude of the location
  • Long: longitude of the location
  • Date: date of the cumulative report
  • Confirmed: cumulative number of confirmed cases till this day
  • Deaths: cumulative number of deaths till this day
  • Recovered: cumulative number of recovered cases till this day
covid-19 dataset examination

We also notice that the feature Date needs to be converted to DateTime format.

Step #2: Cleaning the Data

In this step, we clean the data up to fit our project by:

  • converting the Date feature to the correct format.
  • narrowing down the data to Hubei.
  • turning the cumulative counts to single-day counts: New_Confirmed, New_Deaths, New_Recovered.

Now we have a dataset with newly confirmed, deaths, recovered cases each day from Jan 22nd to Mar 2nd, 2020.

covid-19 dataset hubei in china

Related article: How to Manipulate Date And Time in Python Like a Boss

Step #3: Explaining the Methodologies

As claimed at the beginning of the post, we are trying to estimate the death rate and the distribution of time from symptoms to death/recovery.

You might wonder, why do we want to estimate the death rate?

Isn’t it simply (2,803/67,103) = 4.2% on March 2nd, 2020, for Hubei, based on the data below?

covid-19 dataset in Hubei China

It is not the best way because of two main reasons:

  1. This death rate is likely biased upwards.
    Early in the epidemic outbreak, the confirmed cases only include people being officially diagnosed with severe symptoms. Others with minor symptoms or not diagnosed are not counted in the denominator.
  2. This death rate is also likely biased downwards.
    There is a time gap between being infected and dying/recovering. So we can’t immediately observe the outcome (whether they live) for people infected.
    This could be a big impact when the epidemic is growing exponentially.
    For example, assume on day T = 1 there is 1 new case; T = 2 there are 2 new cases; T = 3 has 100 new cases.
    The person infected on day T = 1 died on T = 3. The simple death rate at T = 3 would be 1 / (1 + 2 + 100), which is not accurate.
    At that time point, we only know for sure the death rate of T = 1 is 1/1 = 100%.

While we can’t address the first problem without extra data, we’ll be accomodating for the second problem.

As for the time from symptoms to death/recovery, most articles provide summary information such as average time to death/recovery. We want to estimate the distribution to get a full picture.

To do these, we use hyperparameter optimization techniques from machine learning.

Hyperparameter optimization or tuning finds a tuple of hyperparameters that yields an optimal model which minimizes a predefined loss function on given independent data.

Wikipedia

As you can tell, the key is to find an optimal model first.

In the next step, we will smooth the data and find a target model that we’ll be tuning its parameters to fit our data.

Step #4: Smoothing the Data

Let’s take a closer look at our Hubei data throughout the time.

covid-19 dataset confirmed
covid-19 dataset death
covid-19 dataset recovered

As you can see, the newly confirmed, deaths, and recoveries are all volatile. The numbers go up and down like rollercoasters.

Due to the limited technologies and other issues, it is normal that the data is not smooth at the early stages of a virus outbreak.

But this is not ideal for our analysis.

Also, we would like to look at the whole time window of the virus infection. We want to know the time when people had symptoms rather than being confirmed officially.

Hence, we redistribute the number of these features (New_Confirmed, New_Deaths, New_Recovered) for one day equally among a time window before that day.

A confirmed case today might have had symptoms days before. And we are just smoothing out deaths and recoveries as well.

How should we redistribute?

This concept is easier to understand with an example. Assume our data looks like below, with T representing the day and New_Confirmed as the daily confirmed cases.

covid-19 dataset new confirmed example

And we want to set the lookback window to be 5.

We start on day 1 of T = 1.

There is not enough history for the 5-day window to look back. But we can still do a 2-day redistribution.
The 10 cases at T = 1 can be divided into 2 parts, each of 5 cases and add onto T = 0 and T = 1.

covid-19 dataset new confirmed example

Similarly, for day 2 of T = 2, we can redistribute the 10 days among 3 days.

covid-19 dataset new confirmed example

And so on.

Now let’s go back to our analysis.

For the feature New_Confirmed, we set a window size of 10. For New_Deaths and New_Recovered, we set the window to be 3. Since it usually takes longer to confirm a new infection than a death/recovery.

The detailed procedure is coded in Python below.

Since we pick the lookback window of 10 days, we remove the latest days that don’t have enough future data.

Let’s see how our data looks like after this smoothing process.

covid-19 dataset new confirmed
covid-19 dataset new death
covid-19 dataset new recoveries

New_Confirmed, New_Deaths, and New_Recovered are all looking much better now.

Before moving on, let’s also remove any nulls from the dataset.

Step #5: Choosing the Optimal Model

What is a good statistical model that fits this data?

The Gamma distribution is a popular model for the waiting times between relevant events. It is also known for its flexible shape.

gamma pdf
Source: Wikipedia

Let’s assume both the time from symptoms to death (time-to-death) and time from symptoms to recovery (time-to-recovery) follow Gamma distributions.

A Gamma distribution has two parameters – a shape parameter and a scale parameter.

So we need to find out the values of these four parameters:

  • ttd_scale: time-to-death scale parameter
  • ttd_shape: time-to-death shape parameter
  • ttr_scale: time-to-recovery scale parameter
  • ttr_shape: time-to-recovery shape parameter

And as you may recall, we are trying to estimate the death rate as well. Let’s include it as the last piece of the puzzle to solve.

Now to specify the hyperparameter tuning problem, we will run simulations to:

find a tuple of hyperparameters (ttd_scale, ttd_shape, ttr_scale, ttr_shape, and death_rate) that yields an optimal model (including Gamma distributions) which minimizes a predefined loss function (Mean Squared Error) on given independent data (COVID-19 dataset).

Among the hyperparameter optimization approaches, we will use the random search.

Before deciding, we also experimented with more sophisticated algorithms. But they all focused narrowly on a set of “best” parameters. We want to explore different possible scenarios and use our judgment to see if it makes sense.

So we choose the random search approach, which can provide a wide range of scenarios.

Step #6: Running Simulations for Hyperparameter Tuning

For the simulation process, we make the below assumptions based on our judgment:

  • ttd_shape, ttr_shape, ttd_scale, ttr_scale are between 0.1 and 100.
  • death_rate is between 1% and 30%.

The simulation and optimization function run_sim are coded as below.

Then this function run_sim is simulated for 20,000 times. The result of each simulation is saved in the test.txt file.

Within the procedure, we use the hyperopt package to apply the hyperparameter optimization techniques.

If you are interested in learning more about the package, please read Automated Machine Learning Hyperparameter Tuning in Python.

There are also other packages available for hyperparameter optimization. But we choose hyperopt for its popularity. Stay tuned for our future articles with more options!

Update: take a look at this article for a better package Hyperparameter Tuning with Python: Complete Step-by-Step Guide.

Next, leave your computer to “struggle” for ~2 hours to run the entire simulation!

Let’s take a look at the simulation results.

The below data shows the best 20 combinations of parameters with the lowest loss function.

hyperparameters tuning results covid-19 death rate

Let’s examine both of the best two scenarios.

Both of them claim that the death rate is much higher at 22% and 9%!

Step #7: Visualizing the Results

In this last step, let’s look at the details of the top two scenarios.

Scenario One: Death rate = 22%

  • Death

Under this doomsday scenario, the death rate is as high as 22%.

While the prediction seemed to match the actual at earlier days, they diverged since early February.

So good news, the death rate is not as high as this scenario suggests.

covid-19 death rate scenario 1

covid-19 death rate scenario 1
  • Recovery

The predicted recovery was higher than the actual at the beginning while they moved closer at later days.

covid-19 death rate scenario 1
covid-19 death rate scenario 1

Scenario Two: Death rate = 8.7%

  • Death

Even though this scenario gave a higher loss function, the predicted number of death match the actual death closer throughout the time.

covid-19 death rate scenario 2
covid-19 death rate scenario 2
  • Recovery

Under this scenario, the predicted recoveries also match closer to the actual numbers throughout time.

covid-19 death rate scenario 2
covid-19 death rate scenario 2

So given the above observations, the second scenario is more likely to be real, even for the severe Hubei province.

Please note that the analysis and conclusions are all based on certain assumptions. And we were only trying to tune the death rate up, as mentioned in Step #3.

The only sure thing is that we all hope the coronavirus crisis passes on soon!

Stay strong and healthy.

Source: Giphy


Thank you for reading. Leave a comment below to let us know your thoughts.

Twitter
LinkedIn
Facebook
Email
Lianne & Justin

Lianne & Justin

7 thoughts on “What is the Coronavirus Death Rate with Hyperparameter Tuning<br /><div style='color:#7A7A7A;font-size: large;font-family:roboto;font-weight:400;'> Examine the death rate and time to death/recovery distribution with Python</div>”

  1. Good morning
    Thanks a lot for your article.
    I’ve just tried it with the French dataset and I got a death rate of 4.9% with a loss of 1.69. I guess this is due to the low number of contaminated subjects in the country. I plan to update this in the future.

    I just have an issue: Martinique and French Guiana are considered as different countries from France. Thus I changed the rows in the file to set them as Province. But, then, I have several entries for each day. As I am a total beginner in Python, I do not know how I could merge these data on each day. I guess it can be done around the .reset_index() function… Maybe you could help me
    Thanks a lot

    1. Hey Clem, is this what you are trying to do?

      df2 = df.groupby([‘Province/State’, ‘Date’])[[‘Confirmed’, ‘Deaths’, ‘Recovered’]].sum().reset_index()
      df2 = df2[df2[‘Province/State’] == ‘French Provinces’]

  2. I don’t know, I’m not sure I do understand your code lines. When trying them I have an error message “KeyError: ‘Province/State’ ”

    What I am trying to do is to sum Martinique and French Guiana to France.
    FIrst I modified the .csv file so that they are considered as French Province/State and then I’d like to sum all the Deaths, Recovered, Confirmed on each day.

    Sorry for my being totally noob with Pyhton

    1. The code I put is doing what you want. It seems like it’s just the different names of the columns.
      I’m not sure what name you’re using for the column, but try replacing ‘Province/State’ with what you have.
      Let me know if it works.

  3. Hello!

    Can you please also provide the visualisation part from Step #7: Visualizing the Results, instructions in python?
    I’m assuming you are taking in account ttd, death_rate and new_confirmed_case and the refference new_death.

    Thank you.

Leave a Comment

Your email address will not be published. Required fields are marked *

More recent articles

Scroll to Top

Learn Python for Data Analysis

with a practical online course

lectures + projects

based on real-world datasets

We use cookies to ensure you get the best experience on our website.  Learn more.