Skip to main content

ORIGINAL RESEARCH article

Front. Public Health, 15 December 2023
Sec. Infectious Diseases: Epidemiology and Prevention
This article is part of the Research Topic Pandemic Response: Challenges, Advances, and Lessons Learnt View all 37 articles

Predicting COVID-19 pandemic waves including vaccination data with deep learning

  • 1Instituto Universitario de Matemática Pura y Aplicada, Universitat Politécnica de València, València, Spain
  • 2Departamento de Ciencia de la Computación e I.A., Universidad de Alicante, Alicante, Spain
  • 3Ellis Alicante, Alicante, Spain

Introduction: During the recent COVID-19 pandemics, many models were developed to predict the number of new infections. After almost a year, models had also the challenge to include information about the waning effect of vaccines and by infection, and also how this effect start to disappear.

Methods: We present a deep learning-based approach to predict the number of daily COVID-19 cases in 30 countries, considering the non-pharmaceutical interventions (NPIs) applied in those countries and including vaccination data of the most used vaccines.

Results: We empirically validate the proposed approach for 4 months between January and April 2021, once vaccination was available and applied to the population and the COVID-19 variants were closer to the one considered for developing the vaccines. With the predictions of new cases, we can prescribe NPIs plans that present the best trade-off between the expected number of COVID-19 cases and the social and economic cost of applying such interventions.

Discussion: Whereas, mathematical models which include the effect of vaccines in the spread of the SARS-COV-2 pandemic are available, to the best of our knowledge we are the first to propose a data driven method based on recurrent neural networks that considers the waning effect of the immunization acquired either by vaccine administration or by recovering from the illness. This work contributes with an accurate, scalable, data-driven approach to modeling the pandemic curves of cases when vaccination data is available.

1 Introduction

The COVID-19 pandemic was the first pandemic for which data related to the number of infections, deaths, hospitalizations, and other relevant variables were captured and reported daily in over 100 countries in the world (1, 2). Data scientists across the globe, working with mathematicians and epidemiologists, developed computational models to predict the pandemic spread using a variety of approaches, including compartmental meta-population (e.g., SIR or SEIR) (36), statistical (710), agent-based (1114), and deep learning-based (1518) models. These models consider the impact of the applied non-pharmaceutical interventions (NPIs) and thus enable running simulations of what-if scenarios where different NPIs were to be applied.

The SARS-CoV-2 outbreak in Wuhan was made public on 31 December 2019. Its impact and spreading potential were early noticed (19), and the virus genome was sequenced at an early stage of the pandemic spread, showing its most remarkable features (20). The first vaccines were quickly developed due to a concerted effort by pharmaceutical companies, scientists, and governments. Clinical trials started in recorded time after the coronavirus pandemic was declared (2124). This allowed the first vaccine doses to be available at the end of 2020 and the beginning of 2021 (2527).

Estimating the immunity provided by the different vaccines before setting up vaccination plans was critical in preventing the spread of the infection and in estimating the reduction of the breakthrough infection and other indirect effects. These estimations across different population groups led to the proposal of specific vaccination strategies (28). Another factor to consider is each vaccine's decrease in immunity over time (29, 30).

Several mathematical models that leverage such information have been proposed to forecast the evolution of the pandemic under different vaccination policies worldwide, such as (15, 31). Immunity can be estimated in terms of confidence intervals, but, as described later, the waning in immunity may be modeled through Weibull distributions (32).

However, we are not aware of any deep learning-based approach to predict the evolution of the COVID-19 pandemic while considering the impact of vaccination. In this study, we present a deep learning-based COVID-19 case predictor that includes vaccination data and thus extends the previous study by (17, 18).

We empirically test different implementations with data from the first quarter of 2021 when vaccines started to be available. At that time, the predominant variants of SARS-CoV-2 were Alpha, Beta, and Gamma, which were closer to the variant considered to develop the vaccines than the Delta variant.

This study is organized as follows: In Section 2, we present the notation and the core computational epidemiological models used by our predictor. The data sources used for this study are described in Section 3. Section 4 presents the deep learning-based architecture that we used to implement the different models to predict the number of daily COVID-19 cases. Section 5 summarizes our results, followed by our conclusion in Section 6.

2 Computational epidemiological model

2.1 Notation

We will use the following terms and notation as per (17). Given an arbitrary country denoted by GEOj, we assume that its population is constant and denoted by Pj. Its daily number of new COVID-19 confirmed cases on the nth day, starting from 1st September 2020, will be denoted by Xnj. In our estimations, we will consider the smoothed averaged number of cases between the days nK+1 and n, computed as Znj=1Ki=0K-1Xn-1j, with K = 7, to smooth over 1 week.

Beyond the number of infected individuals on the n-th day at GEOj, we also consider Snj, the number of susceptible individuals who can be infected on the n-th day; Vnj, the number of individuals protected by a vaccine on the nth day; and Dnj, number of retired (recovered or deceased) individuals in GEOj on the nth day. We compute the ratio of cases between 2 consecutive days as Cnj=Znj/Zn-1j, which shows the growth/decrease in the number of cases, and the rescaled ratio by the proportion of susceptible individuals, denoted by Rnj=CnjPjSnj. This last quotient captures the effects of a finite population, as it depends on the proportion of susceptible individuals.

We denote the estimations provided by our models with a ·^ symbol, e.g., X^nj denotes the estimated number of new COVID-19 cases on the n-the day in GEOj, and R^nj the estimated scaled case ratio. Next, we present the two underlying computational epidemiological models in which our deep neural network models are based.

2.2 Compartmental SIR model

The classic compartmental metapopulation SIR model computes the number of Susceptible (S), Infected (Z), and Recovered (D) individuals as per the following differential equations:

dSdt=-βSPZ+σ(D),    (1)
dZdt=βSPZ-μZ.    (2)
dDdt=μZ-σ(D)    (3)

where β is the infection rate, μ is the recovery or removal rate, and σ(D) is a function of the retired individuals. This term is not usually included in basic SIR model formulations, but as the pandemic evolved, it is necessary to include it. The infection rate β, and thus Rnj, depend on the transmissibility rates of the different variants circulating in GEO j at time n and on the applied non-pharmaceutical interventions (NPIs) at GEO j. During the period under consideration, there were several variants of concern (VOC) (Alpha, Beta, and Gamma) which changed to variants being monitored (VBM) in September 2021 due to the emergence and expansion of the Delta variant since June 2021 (33). We assume that the three VBM variants behave as a single one. As explained below, the effect of β and μ will be captured jointly in Rnj, thus estimating them individually is not necessary.

2.3 Compartmental SIR model with vaccination (SVIR)

The previous SIR model can be extended to incorporate information regarding the level of vaccination in each GEO and the efficiency of the vaccines. It is given by the following equations:

dSdt=-βSPZ+σ(D)-α(P)+γ(V),    (4)
dVdt=α(P)-γ(V),    (5)
dZdt=βSPZ-μZ,    (6)
dDdt=μZ-σ(D).    (7)

This model has two additional terms with respect to the previous one: α(P), which represents the daily vaccinated population, and γ(V), which is a function indicating the vaccinated population that becomes susceptible to the virus due to the waning effect of the vaccines.

From the discrete version of dZdt, either in 2 or 6, Znj, the number of infected individuals on the n-th day in GEOj is given as follows:

Znj=Zn-1j+βSn-1jPjZn-1j-μZn-1j    (8)
=(1+βSn-1jPj-μ)Zn-1j,    (9)

where Sn-1j and Zn-1j are the numbers of susceptible and infected individuals GEOj on the day n−1, β is the infection rate, and μ as the recovery or removal rate, which yields the scaled case ratio, Rnj as in (16, 17):

Rnj=ZnjZn-1jPjSnj=(1-μ)PjSnj+β.    (10)

Given that μ is constant in (10), the larger the infection rate β is, the larger the Rnj will be. If we predict Rnj, we can estimate the number of COVID-19 cases for the n-th day in GEOj as follows:

X^nj=(R^njSn-1jPj-1)KZn-1j+Xn-7j.    (11)

It is worth mentioning that Znj is the resulting smoothed number of infected people on GEOj over 7 days, from n−6 up to n. Moreover, Xn-7j is the real number of infected people on the day n−7 in GEOj.

While X^nj is given by the same expression both in the SIR (1) and SVIR (4) models, the estimation of the number of susceptible individuals, Snj, is different due to the vaccination. In the case of the SVIR model, the total population Pj for GEOj is given by Pj=Snj+Vnj+Znj+Dnj, for any n∈ℕ, indicating that the total population on GEOj is split on day n as the sum of the susceptible (Snj), vaccinated (Vnj), infected (Znj), and removed individuals (Dnj), including both immunized and deceased individuals. Thus, discretizing dSdt, the number of susceptible individuals on the n-th day in GEOj, denoted as Snj, can be obtained as follows:

Snj=Sn-1j-Zn-1j-α(P)n-1j+σ(D)n-1j+γ(V)n-1j,    (12)

where α(P)n-1j represents the total number of vaccinated individuals on the day n−1, γ(V)n-1j, reflects the vaccinated individuals who have lost immunity on day n−1, and γ(D)n-1j corresponds to the infected individuals who have lost immunity on day n−1.

The impact of the loss on immunity by part of the population is complex and hard to infer, as it depends on the types of vaccines delivered in each GEO, the distribution of variants with their respective infection rates, the number of doses administered, and the number of partial and fully vaccinated individuals (34). For instance, the Alpha variant was predominant with respect to the Primal variant between January 2021 and June 2021, when the Delta variant became a variant of concern (33). In our experiments we assume that:

(1) All circulating SARS-CoV-2 variants are a unique variant during the entire period of study; and

(2) All vaccines impact individuals equally, independently of their age, gender, or ethnicity, given that such information is not available in the compartmental metapopulation models.

2.4 Decay over time in the vaccine's immunity to SARS-CoV-2 infections

The decay of the vaccine's immunity against a SARS-CoV-2 infection may be fitted using a Weibull or a lognormal model. Both of them estimate a similar average protection, but the Weibull model provides a slightly better fit over time (32). The waning effect of the vaccine's immunity on day n is modeled by the means of a Weibull distribution of parameters k and ρ for the following eight vaccines:

1. ChAdOx1 (Oxford/Astrazeneca, OA)

2. Ad5-nCoV Convidecia (Cansino, CA)

3. mRNA-1273 (Moderna Biotech, MO)

4. BBIBP-CorV (Sinopharm, SP)

5. CoronaVac (Sinovac, SV)

6. Sputnik V/Gam-COVID-Vac (Gamaleya, GA)

7. Ad26.COV2.S (Janssen, JA)

8. BNT162b2 (Pfizer/BioNTech, PB)

We denote by

F(n,λi,ki)=e-(n/λi)ki    (13)

the complement of the Weibull distribution that models the waning effect on day n of each of the eight vaccines listed above. These models are known as accelerated failure time models and are frequently used in survival analyses. We use the same fitting parameters λi and ki as those reported in the study mentioned in the reference (32, Table 4). As shown in the Table 1, the parameter estimates are available for individuals who are vaccinated with either a complete or incomplete dose and for actively infected individuals.

TABLE 1
www.frontiersin.org

Table 1. Fitted parameters for the Weibull distribution (λ, k), for complete and incomplete doses from (32).

Figure 1 shows the Weibull functions that model the probability of immunity for infected and fully vaccinated individuals and for each of the eight vaccines.

FIGURE 1
www.frontiersin.org

Figure 1. Weibull distributions to model the decay effect of the 8 vaccines (OA, CA, MO, SP, SV, GA, JA, and PB) on infected and fully vaccinated individuals.

In Equation (13) and in the rest of the formulas, the index i = 0 represents the already infected population; i∈[1, 8] denotes each one of the eight vaccines, following the order in which they are listed above. We assume that: (1) protection starts on the 14th day after the last –complete or partial– dose; and (2) individuals can get reinfected after d0 = 14 days. Given these assumptions, the number of infected individuals who become susceptible again on GEOj and on day n is given as follows:

σ(D)nj=(1-F(d0,λ0,k0))Zn-14    (14)
+l=1n-d0(F(d0-1+l,λ0,k0)-F(d0+l,λ0,k0))Zn-l-14,    (15)

for nd0+1, where λ0 = 87.3 and k0 = 1.4 as per (32). The number of vaccinated individuals that become susceptible after waning immunity is computed as follows:

γ(V)nj=v=p,fi=18(1-F(d0,λi,v,ki,v))Vn-14i+    (16)
v=p,fi=18l=1n-d1(F(d0-1+l,λi,v,ki)-F(d0+l,λi,v,ki,v))Vn-l-14i,    (17)

for nn0+d0 = 363, where Vsi is the number of individuals that were vaccinated on day s with vaccine i; v indicates whether individuals are partially (p) or fully vaccinated (f); and n0 corresponds to 14 December 2020 (349th day of the year) plus d0 days of latency until individuals may get infected again when the vaccination started worldwide.

3 Data sources

The number of infected and vaccinated individuals and the non-pharmaceutical interventions (NPIs) applied in each GEO of interest were retrieved from the Oxford COVID-19 Government Response Tracker (OxCGRT) (35). If a country has a negative number of cases in 1 day, we replace this number with 0. The input to the prediction model is the smoothed number of cases obtained by computing their average over 7 days.

Table 2 shows the NPIs considered in this study. They are categorical variables that indicate the level of intensity of applying each NPI: the higher the level, the more restrictive the applied measure is. Detailed information about these levels can be found in the codebook of the OxCGRT (35) and in the Supplementary material of (17).

TABLE 2
www.frontiersin.org

Table 2. NPIs considered in this study and their possible activation values.

One of these NPIs (H7) describes the population groups that are covered by vaccination with the following levels: (0) vaccines are not available; (1–3) vaccines are available to one or more of the following groups (indicating the number of them): key workers, clinically vulnerable groups, and older individuals; (4) vaccines are available for broader groups; and (5) vaccines are universally available. The complete description of each NPI can be found at the study mentioned in the reference (36). All the predictor models described in this study consider all confinement (C1 to C8) and some public health interventions (H1 to H3 and H6). The vaccination NPI (H7) may be used to incorporate vaccination into an SIR model or complement an SVIR model, as explained below.

The number of administered vaccine doses per GEO and day is obtained from the OxCGRT dataset. However, this information is not provided per vaccine type. We obtained the vaccine specific details from the study mentioned in the reference (2, 37) but only for the following GEOs: Argentina, Austria, Belgium, Bulgaria, Canada, Croatia, Cyprus, Czech Republic, Denmark, Ecuador, Estonia, Finland, France, Germany, Hungary, Ireland, Italy, Latvia, Lithuania, Luxembourg, the Netherlands, Norway, Poland, Portugal, Slovak Republic, Slovenia, Spain, Sweden, Switzerland, and United States. In the following, we refer to these countries as GEOs, being GEOj the j-th country in this set. Once we have defined the underlying computational epidemiological models and described the data sources, the next sections present the different implementations of the deep learning-based predictor of daily COVID-19 cases and their evaluation with real data.

4 Predictors of COVID-19 cases with vaccination

4.1 Basic architecture

We base our predictor architecture in the architecture presented in the study by (17). It consists of two parallel branches of bidirectional Long Short Term Memory layers (LSTM) (38), as shown in Figure 2: one (top branch) to predict Rnj, i.e., the COVID-19 infection rate in GEOj on day n (context), and the other (bottom branch) to model the effect of the applied NPIs (actions), Anj. Each LSTM provides separate predictions from the context, denoted by h and actions, denoted by h, combined using a lambda layer to yield an estimated R^nj. From R^nj, the number of daily cases is computed as per Equation (11). While we obtain a model for all the GEOs, for conducting predictions on each GEO, we use its own context and action data. The model is implemented in TensorFlow and Keras, running in a computer with an RTX 3090 GPU with 24 GB of RAM.

FIGURE 2
www.frontiersin.org

Figure 2. Given the previous contexts Rn-1j and actions An-1j on GEO j up to the n−1-th day, the model computes an estimated R^nj which is the infection rate at n-th day for GEO j as a result of combining both branches with a lambda function.

The architectural details of each of the branches are as follows:

1. The context branch (top) consists of a one dimensional convolutional layer with the ReLu activation function, followed by a maxpool layer with pool size equal to two, and a bidirectional LSTM followed by a dense layer. The convolutional layer has 64 filters with kernel of size 8, and the bidirectional LSTM with 32 units encodes the input sequence into states of 32 dimensions, which are then provided to the dense layer for prediction. This architecture empirically generalized well for many GEOs, achieving good performance in both short- and long-term predictions (17). The outcome of this layer is denoted by a function h in terms of the ratios of cases Rnj.

2. The action branch (bottom) consists of an LSTM followed by two dense layers to capture non-linearities. We use a sigmoid activation function to ensure the output is in the [0, 1] range. The outcome of this layer is denoted by a function g(A) in terms of the NPi's Anj applied in the GEO j. Moreover, we constrain g(A) to satisfy the following condition: if the difference between two sets of actions A and A′ is greater than or equal to 1, (1−g(A)) must be lower or equal to (1−g(A′)).

3. Finally, a lambda layer combines the outcomes of the context and action branches and provides the predictions of Rnj^ that permits estimating future cases.

4.2 Enhanced models with vaccination

We introduce two key modifications with respect to previously described basic model. First, the rapid expansion of the Alpha/Delta/Omicron variants enables learning a context model for all GEOs simultaneously instead of clusters of countries. Second, instead of a traditional SIR model, we include vaccination information in two ways: (1) through an NPI (H7) as an action in the action branch or (2) with an SVIR model that considers the effects of vaccination. The hypothesis is that the SVIR model would yield more accurate predictions once vaccinations are widespread, as it considers the protective effect of vaccination. Nevertheless, as time goes by, the probability of reinfection increases, it is necessary to include waning immunity in the models.

We compare eight different predictors. First, we use the baseline model (Baseline 1) introduced in the study mentioned in the reference (16) and served as a baseline for the XPRIZE Pandemic Response Challenge. We also benchmark our proposed models against a second baseline model (Baseline2), the predictor presented in the study mentioned in the reference (17) but without performing any clustering of GEOs as we only consider the 30 GEOs, where vaccination data were available as opposed to 198 GEOs. With such a limited number of GEOs, a clustering process is unsuitable. In neither of these predictors, there is no reintroduction of infected individuals who have lost immunity.

In addition, we consider six predictors to test the different implementations of vaccination data. All the predictors consider a waning immunity of infected individuals. These are the models under consideration, according to the nomenclature used in Table 3:

1. SIR w/o H7 w/o VacW: SIR model that reintroduces infected individuals that lost immunity but that neither considers NPI H7 nor the waning in the vaccines' immunity.

2. SIR H7 w/o VacW: SIR model that reintroduces infected individuals that lost immunity and considers NPI H7 but does not consider the waning in the vaccines' immunity.

3. SVIR w/o H7 w/o VacW: SVIR model that reintroduces infected individuals that lost immunity but that neither considers NPI H7 nor the waning in the vaccines' immunity.

4. SVIR w/o H7 & VacW: SVIR model that reintroduces infected individuals that lost immunity considers the waning in the vaccines' immunity but does not include NPI H7.

5. SVIR H7 w/o VacW: SVIR model that reintroduces infected individuals that lost immunity and considers NPI H7 but does not consider the waning in the vaccines' immunity.

6. SVIR H7 & VacW: SVIR model that reintroduces infected individuals that lost immunity and considers both NPI H7 and the waning in the vaccines' immunity.

TABLE 3
www.frontiersin.org

Table 3. Accuracy of the predictors expressed in terms of MAE and Mean Rank (M. Rank) from 1st January 2021 to 30th April 2021.

Notably, the SIR model only allows to include vaccination by adding NPI H7. In our experiments, we compare these predictors with real data in the 30 GEOs of study.

The input to the models consists of data from previous confirmed cases and the NPIs implemented in each GEO. The NPIs are represented as a vector of categorical values that indicate the strength of each of the interventions, as previously explained.

5 Results

In this section, we first present the results of testing the previously described models to predict the number of COVID-19 cases globally between January and April 2021. We train the predictor with data retrieved from OxCGRT data set to predict the daily COVID-19 cases for the aforementioned list of GEOs between 1st September 2020 and 30th April 2021. All models were trained starting in 1st September 2020 until the day before the first prediction day. The models have a cumulative error since the prediction for the first day is used to make the prediction for the second one. In our experiments, we observed that for prediction periods longer than a fortnight, the error in the predictions started to increase significantly. Thus, we trained a new predictor every 15 days in the testing period and tested it to predict the number of COVID-19 cases in the next 14 days. After summarizing, to predict the number of newly infected individuals on day d0, the models are trained with data up to d0−8. We run five simulations to predict the number of new infections for d0−7 to d0−1 days. We select the model with the lowest mean absolute error (MAE) and use it to predict the number of COVID-19 cases for the period d0 to d0+13. To prevent overfitting, we use a validation data set at each epoch at training and an early stopping callback such that when the validation MAE stops decreasing, the training process is also stopped.

Table 3 shows the MAE and Mean Rank of all the models, including the baselines ones. Notably, the MAE is normalized by 100,000 inhabitants to enable a fair comparison across GEOs independently of the population size. To compute the Mean Rank, the models are ranked on each GEO and period, assigning 1 to the best-performing model and a 7 to the worst-performing model. The mean of all ranks on all GEOS is computed to obtain each predictor's Mean Rank.

Figure 3 shows the predictions of the two best-performing predictors (H7 & VacW SVIR and w/o H7 & VacW SVIR) compared with the ground truth (yellow dashed line) and the baseline 2 model (red line), between mid-January and mid-February 2021, immediately after the vaccinations started to have an impact on the spread of COVID-19. Let us note how the inclusion of H7 improves the estimation.

FIGURE 3
www.frontiersin.org

Figure 3. Predictions from 25th January to 11th February of the number of COVID-19 cases vs. the ground truth (yellow dashed line) for Europe with MAE per 100,000 inhabitants.

Figures 47 show the predictions of the two best-performing predictors on data between January and March of 2021 on several European countries with very different dynamics in the evolution of their number of COVID-19 cases: Poland during January 2021, when cases were increasing (Figure 4); France during February 2021, when cases were stabilized (Figure 5); Ireland during March 2021, when cases tended to decrease or stabilize (Figure 5); and Italy during April 2021, when there were two peaks of infections (Figure 7). Let us note how the H7& VacW SVIR predictor is able to correctly capture the trends in the pandemic curves even with such diversity of situations of the pandemic.

FIGURE 4
www.frontiersin.org

Figure 4. Prediction of the number of COVID-19 cases vs. the ground truth for Poland with MAE per 100,000 inhabitants in January 2021.

FIGURE 5
www.frontiersin.org

Figure 5. Predictions of the number of COVID-19 cases vs. the ground truth for France with MAE per 100,000 inhabitants in February 2021.

FIGURE 6
www.frontiersin.org

Figure 6. Predictions of the number of COVID-19 cases vs. the ground truth for Ireland with MAE per 100,000 inhabitants in March 2021.

FIGURE 7
www.frontiersin.org

Figure 7. Predictions of the number of COVID-19 cases vs. the ground truth for Italy with MAE per 100,000 inhabitants in April 2021.

6 Conclusion

In this study, we have presented a deep learning-based predictor of COVID-19 cases in 30 countries that considers both the daily Non-Pharmaceutical Interventions applied in each country and vaccination data.

It is worth mentioning that despite the abundance of data, it is complex to consider information regarding age groups, doses administered of each vaccine, and the coexistence of different strains with different transmissibility rates, which were different from the primal strain used for designing the vaccines. In addition, the most efficient vaccines were the mRNA-based vaccines, which were the first ones to be designed and massively applied with this technology, and the duration of their effects on individuals from different regions is still under study, which may lead to potential biases (39).

Despite these difficulties and limitations, the proposed approach effectively considers vaccination information in a machine learning-based model that can be applied to different countries to predict the number of COVID-19 cases. Our models have shown a competitive performance over a long time period between January and April of 2021, when the vaccination campaigns started in many countries. Our study illustrates the value of having access to high-quality systematic data during a pandemic to enable evidence-driven decision-making.

All code and files used in this study are available at https://github.com/AhmedBegggaUA/frontiers_in_public_health.

Data availability statement

The datasets presented in this study can be found in online repositories. The names of the repository/repositories and accession number(s) can be found below: https://github.com/AhmedBegggaUA/frontiers_in_public_health.

Author contributions

AB: Conceptualization, Writing – original draft, Writing – review & editing, Data curation, Formal analysis, Methodology, Software, Validation, Visualization. ÒG-i-O: Data curation, Software, Writing – original draft, Writing – review & editing, Conceptualization, Formal analysis, Methodology, Validation, Visualization. SM-G: Data curation, Software, Formal analysis, Validation, Writing – review & editing. FE: Formal analysis, Funding acquisition, Software, Validation, Writing – review & editing. ML: Formal analysis, Funding acquisition, Software, Validation, Writing – review & editing. NO: Conceptualization, Formal analysis, Funding acquisition, Investigation, Software, Validation, Writing – original draft, Writing – review & editing. JC: Writing – original draft, Writing – review & editing, Conceptualization, Formal analysis, Funding acquisition, Investigation, Methodology, Software, Supervision, Validation.

Funding

The author(s) declare financial support was received for the research, authorship, and/or publication of this article. The authors have been supported by Valencian Government, Grant VALENCIA IA4COVID (GVA-COVID19/2021/100). The authors also want to thank their previous support by Grants FONDOS SUPERA COVID-19 Santander-CRUE (CD4COVID19 2020-2021), Fundación BBVA for SARS-CoV-2 research (IA4COVID19 2020-2022), and the Valencian Government, which permitted to initiate this research line. NO was partially supported by a grant by the Valencian Government (Convenio singular 2022 and 2023 between ELLIS Alicante and the Generalitat Valenciana, Conselleria de Innovación, Turismo, Industria y Comercio, Dir. Gral. de Innovación).

Conflict of interest

The authors declare that the research was conducted in the absence of any commercial or financial relationships that could be construed as a potential conflict of interest.

Publisher's note

All claims expressed in this article are solely those of the authors and do not necessarily represent those of their affiliated organizations, or those of the publisher, the editors and the reviewers. Any product that may be evaluated in this article, or claim that may be made by its manufacturer, is not guaranteed or endorsed by the publisher.

References

1. Dong E, Du H, Gardner L. An interactive web-based dashboard to track COVID-19 in real time. Lancet Infect Dis. (2020) 20:533–4. doi: 10.1016/S1473-3099(20)30120-1

PubMed Abstract | CrossRef Full Text | Google Scholar

2. Mathieu E, Ritchie H, Ortiz-Ospina E, Roser M, Hasell J, Appel C, et al. A global database of COVID-19 vaccinations. Nature Hum Behav. (2021) 5:947–53. doi: 10.1038/s41562-021-01122-8

CrossRef Full Text | Google Scholar

3. Arenas A, Cota W, Gómez-Gardeñes J, Gómez S, Granell C, Matamalas JT, et al. Modeling the spatiotemporal epidemic spreading of COVID-19 and the impact of mobility and social distancing interventions. Phys Rev X. (2020) 10:041055. doi: 10.1103/PhysRevX.10.041055

CrossRef Full Text | Google Scholar

4. Bertozzi AL, Franco E, Mohler G, Short MB, Sledge D. The challenges of modeling and forecasting the spread of COVID-19. Proc Natl Acad Sci USA. (2020) 117:16732–8. doi: 10.1073/pnas.2006520117

CrossRef Full Text | Google Scholar

5. Mwalili S, Kimathi Mv, Ojiambo V, Gathungu D, Mbogo R. SEIR model for COVID-19 dynamics incorporating the environment and social distancing. BMC Res Notes. (2020) 13:352. doi: 10.1186/s13104-020-05192-1

PubMed Abstract | CrossRef Full Text | Google Scholar

6. He S, Peng Y, Sun K. SEIR modeling of the COVID-19 and its dynamics. Nonlinear Dyn. (2020) 101:1667–80. doi: 10.1007/s11071-020-05743-y

PubMed Abstract | CrossRef Full Text | Google Scholar

7. ArunKumar KE, Kalaga DV, Sai Kumar CM, Chilkoor G, Kawaji M, Brenza TM. Forecasting the dynamics of cumulative COVID-19 cases (confirmed, recovered and deaths) for top-16 countries using statistical machine learning models: Auto-Regressive Integrated Moving Average (ARIMA) and Seasonal Auto-Regressive Integrated Moving Average (SARIMA). Appl Soft Comp. (2021) 103:107161. doi: 10.1016/j.asoc.2021.107161

CrossRef Full Text | Google Scholar

8. Cheng C, Barceló J, Hartnett AS, Kubinec R, Messerschmidt L. COVID-19 government response event dataset (CoronaNet v. 1.0). Nat Hum Behav. (2020) 4:756–68. doi: 10.1038/s41562-020-0909-7

PubMed Abstract | CrossRef Full Text | Google Scholar

9. Fuente D, Hervas D, Rebollo M, Conejero JA, Oliver N. COVID-19 outbreaks analysis in the Valencian Region of Spain in the prelude of the third wave. Front Public Health. (2022) 10:1010124. doi: 10.3389/fpubh.2022.1010124

PubMed Abstract | CrossRef Full Text | Google Scholar

10. R Velásquez MA, Lara JVM. Forecast and evaluation of COVID-19 spreading in USA with reduced-space Gaussian process regression. Chaos Solitons Fractals. (2020) 136:109924. doi: 10.1016/j.chaos.2020.109924

PubMed Abstract | CrossRef Full Text | Google Scholar

11. Kerr CC, Stuart RM, Mistry D, Abeysuriya RG, Rosenfeld K, Hart GR, et al. Covasim: an agent-based model of COVID-19 dynamics and interventions. PLoS Comput Biol. (2021) 17:e1009149. doi: 10.1371/journal.pcbi.1009149

PubMed Abstract | CrossRef Full Text | Google Scholar

12. Koo J, Cook A, Park M, Sun Y, Sun H, Lim J, et al. Interventions to mitigate early spread of SARS-CoV-2 in Singapore: a modelling study. Lancet Infect Dis. (2020) 20:678–88. doi: 10.1016/S1473-3099(20)30162-6

PubMed Abstract | CrossRef Full Text | Google Scholar

13. Moreno López J, Arregui García B, Bentkowski P, Bioglio L, Pinotti F, Boëlle P, et al. Anatomy of digital contact tracing: role of age, transmission setting, adoption, and case detection. Sci Adv. (2021) 7:eabd8750. doi: 10.1126/sciadv.abd8750

PubMed Abstract | CrossRef Full Text | Google Scholar

14. Solares-Hernández PA, i Orts OG, Conejero JA, Manzano FA. Adaptation of the COVASIM model to incorporate non-pharmaceutical interventions: application to the Dominican Republic during the second wave of COVID-19. Appl Math Nonlinear Sci. (2023). doi: 10.2478/amns.2023.1.00413

CrossRef Full Text | Google Scholar

15. Janko V, Reščič N, Vodopija A, Susič D, De Masi C, Tušar T, et al. Optimizing non-pharmaceutical intervention strategies against COVID-19 using artificial intelligence. Front Public Health. (2023) 11:1073581. doi: 10.3389/fpubh.2023.1073581

PubMed Abstract | CrossRef Full Text | Google Scholar

16. Miikkulainen R, Francon O, Meyerson E, Qiu X, Sargent D, Canzani E, et al. From prediction to prescription: Evolutionary optimization of nonpharmaceutical interventions in the COVID-19 pandemic. IEEE Trans Evol Comput. (2021) 25:386–401. doi: 10.1109/TEVC.2021.3063217

PubMed Abstract | CrossRef Full Text | Google Scholar

17. Lozano MA, Garibo-i Orts Ò, Piñol E, Rebollo M, Polotskaya K, Garcia-March MA, et al. Open data science to fight COVID-19: winning the 500k XPRIZE pandemic response challenge. In: Machine Learning and Knowledge Discovery in Databases. Applied Data Science Track: European Conference, ECML PKDD 2021. Bilbao; Cham: Springer (2021). p. 384–99.

Google Scholar

18. Lozano MA, Garibo-i Orts Ò, Piñol E, Rebollo M, Polotskaya K, Garcia-March MA, et al. Open data science to fight COVID-19: winning the 500k XPRIZE pandemic response challenge. In: Proceedings of the Thirty-First International Joint Conference on Artificial Intelligence, IJCAI-22. International Joint Conferences on Artificial Intelligence Organization. (2022). p. 5304–8.

Google Scholar

19. Wu JT, Leung K, Leung GM. Nowcasting and forecasting the potential domestic and international spread of the 2019-nCoV outbreak originating in Wuhan, China: a modelling study. Lancet. (2020) 395:689–97. doi: 10.1016/S0140-6736(20)30260-9

PubMed Abstract | CrossRef Full Text | Google Scholar

20. Andersen KG, Rambaut A, Lipkin WI, Holmes EC, Garry RF. The proximal origin of SARS-CoV-2. Nat Med. (2020) 26:450–2. doi: 10.1038/s41591-020-0820-9

CrossRef Full Text | Google Scholar

21. Mulligan MJ, Lyke KE, Kitchin N, Absalon J, Gurtman A, Lockhart S, et al. Phase I/II study of COVID-19 RNA vaccine BNT162b1 in adults. Nature. (2020) 586:589–93. doi: 10.1038/s41586-020-2639-4

PubMed Abstract | CrossRef Full Text | Google Scholar

22. Sahin U, Muik A, Derhovanessian E, Vogler I, Kranz LM, Vormehr M, et al. COVID-19 vaccine BNT162b1 elicits human antibody and TH1-T cell responses. Nature. (2020) 586:594–9. doi: 10.1038/s41586-020-2814-7

PubMed Abstract | CrossRef Full Text | Google Scholar

23. Baden LR, El Sahly HM, Essink B, Kotloff K, Frey S, Novak R, et al. Efficacy and safety of the mRNA-1273 SARS-CoV-2 vaccine. N Engl J Med. (2021) 384:403–16. doi: 10.1056/NEJMoa2035389

PubMed Abstract | CrossRef Full Text | Google Scholar

24. Sadoff J, Le Gars M, Shukarev G, Heerwegh D, Truyers C, de Groot AM, et al. Interim results of a phase 1–2a trial of Ad26. COV2. S COVID-19 vaccine. N J Eng Med. (2021) 384:1824–35. doi: 10.1056/NEJMoa2034201

PubMed Abstract | CrossRef Full Text | Google Scholar

25. Bar-On Bar-On YM, Goldberg Y, Mandel M, Bodenheimer O, Freedman L, Kalkstein N, et al. Protection of BNT162b2 vaccine booster against COVID-19 in Israel. N Engl J Med. (2021) 385:1393–400. doi: 10.1056/NEJMoa2114255

PubMed Abstract | CrossRef Full Text | Google Scholar

26. World Health Organization. COVID-19 Vaccines (2022). Available online at: https://www.who.int/emergencies/diseases/novel-coronavirus-2019/covid-19-vaccines (accessed April 02, 2022).

Google Scholar

27. Kim JH, Marks F, Clemens JD. Looking beyond COVID-19 vaccine phase 3 trials. Nat Med. (2021) 27:205–11. doi: 10.1038/s41591-021-01230-y

PubMed Abstract | CrossRef Full Text | Google Scholar

28. Lipsitch M, Dean NE. Understanding COVID-19 vaccine efficacy. Science. (2020) 370:763–5. doi: 10.1126/science.abe5938

CrossRef Full Text | Google Scholar

29. Jeyanathan M, Afkhami S, Smaill F, Miller MS, Lichty BD, Xing Z. Immunological considerations for COVID-19 vaccine strategies. Nat Rev Immunol. (2020) 20:615–32. doi: 10.1038/s41577-020-00434-6

PubMed Abstract | CrossRef Full Text | Google Scholar

30. Goldberg Y, Mandel M, Bar-On Bar-On YM, Bodenheimer O, Freedman L, Haas EJ, et al. Waning immunity after the BNT162b2 vaccine in Israel. N Engl J Med. (2021) 385:e85. doi: 10.1056/NEJMoa2114228

PubMed Abstract | CrossRef Full Text | Google Scholar

31. Watson OJ, Barnsley G, Toor J, Hogan AB, Winskill P, Ghani AC. Global impact of the first year of COVID-19 vaccination: a mathematical modelling study. Lancet Infect Dis. (2022) 22:1293–302. doi: 10.1016/S1473-3099(22)00320-6

PubMed Abstract | CrossRef Full Text | Google Scholar

32. Hernandez-Suarez C, Murillo-Zamora E. Waning immunity to SARS-CoV-2 following vaccination or infection. Front Med. (2022) 9:972083. doi: 10.3389/fmed.2022.972083

PubMed Abstract | CrossRef Full Text | Google Scholar

33. Centers for Disease Control Prevention. SARS-CoV-2 Variant Classifications and Definitions (2023). Available online at: https://www.cdc.gov/coronavirus/2019-ncov/variants/variant-classifications.html (accessed May 03, 2023).

Google Scholar

34. Self WH, Tenforde MW, Rhoads JP, Gaglani M, Ginde AA, Douin DJ, et al. Comparative effectiveness of Moderna, Pfizer-BioNTech, and Janssen (Johnson & Johnson) vaccines in preventing COVID-19 hospitalizations among adults without immunocompromising conditions–United States, March–August 2021. Morb Mortal Wkly Rep. (2021) 70:1337. doi: 10.15585/mmwr.mm7038e1

CrossRef Full Text | Google Scholar

35. Hale T, Angrist N, Goldszmidt R, Kira B, Petherick A, Phillips T, et al. A global panel database of pandemic policies (Oxford COVID-19 Government Response Tracker). Nat Hum Behav. (2021) 5:529–38. doi: 10.1038/s41562-021-01079-8

PubMed Abstract | CrossRef Full Text | Google Scholar

36. Hale T, Angrist N, Goldszmidt R, Kira B, Petherick A. COVID-19 Government Response Tracker. GitHub (2021). Available online at: https://github.com/OxCGRT/covid-policy-tracker/blob/master/documentation/codebook.md

Google Scholar

37. Mathieu E, Ritchie H, Ortiz-Ospina E, Roser M, Hasell J, Appel C. Data on COVID-19 (Coronavirus) Vaccinations by Our World in Data (2021). Available online at: https://github.com/owid/covid-19-data/tree/master/public/data/vaccinations (accessed April 30, 2023).

Google Scholar

38. Hochreiter S, Schmidhuber J. Long short-term memory. Neural Comput. (1997) 9:1735–80.

Google Scholar

39. Sáez C, Romero N, Conejero JA, García-Gómez JM. Potential limitations in COVID-19 machine learning due to data source variability: a case study in the nCov2019 dataset. J Am Med Inform Assoc. (2021) 28:360–4. doi: 10.1093/jamia/ocaa258

PubMed Abstract | CrossRef Full Text | Google Scholar

Keywords: SARS-CoV-2, COVID-19, vaccination, computational epidemiology, data science for public health, recurrent neural networks, non-pharmaceutical interventions

Citation: Begga A, Garibo-i-Orts Ò, de María-García S, Escolano F, Lozano MA, Oliver N and Conejero JA (2023) Predicting COVID-19 pandemic waves including vaccination data with deep learning. Front. Public Health 11:1279364. doi: 10.3389/fpubh.2023.1279364

Received: 17 August 2023; Accepted: 13 November 2023;
Published: 15 December 2023.

Edited by:

Sohail Jabbar, Imam Muhammad Ibn Saud Islamic University, Saudi Arabia

Reviewed by:

David Alfredo Medina Ortiz, University of Magallanes, Chile
Leila Hedayatifar, New England Complex Systems Institute, United States

Copyright © 2023 Begga, Garibo-i-Orts, de María-García, Escolano, Lozano, Oliver and Conejero. This is an open-access article distributed under the terms of the Creative Commons Attribution License (CC BY). The use, distribution or reproduction in other forums is permitted, provided the original author(s) and the copyright owner(s) are credited and that the original publication in this journal is cited, in accordance with accepted academic practice. No use, distribution or reproduction is permitted which does not comply with these terms.

*Correspondence: J. Alberto Conejero, aconejero@upv.es

Disclaimer: All claims expressed in this article are solely those of the authors and do not necessarily represent those of their affiliated organizations, or those of the publisher, the editors and the reviewers. Any product that may be evaluated in this article or claim that may be made by its manufacturer is not guaranteed or endorsed by the publisher.