COVID-19 spread prediction
# COVID-19 Spread Prediction
The main objective of this study is to predict the cumulative number of cases of the disease based on historical data. Its exploitation will be purely for statistical results intended for governments. The data is reliable and in no case will objectivity be shaken in this prediction and can serve as a very good basis for decision-makers.
We will use time series with Holt's reading method which we modify by adding a logarithm function as input for good modeling of the starting values.
## Data Format
We have chosen to use the data format below. In this format, we have the cumulative number of confirmed cases for each country on different dates
## 2 Proposed Model
This section presents the proposed omskHolt method. This is a chronological
method for predicting confirmed cases of COVID-19, as shown in Figure 1
## Step 0: Clone the projet
git clone
github.com
## Step 1: Download data
python download_data.py
If you want to use an other dataset, you have to:
Modify **path** in main.py
## Step 2:
Run **python main.py**