You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@dr-david We discussed using compartmental models a few times, I've decided to write it down here, so I don't forget the equations.
There are several compartmental models.
Two of them are described at the end of this issue.
Using Diffrax we can implement them and model how the fraction of particular variant changes over the time, i.e.,
and see how well the logistic growth approximates this dynamics over the time.
Note that we can:
Solve the model in terms of the usual fractions of the population, and then calculate the proportions $y_k$ just from the data.
We can even try to fit the model in the Bayesian manner, backpropagating the gradients through and ODE with Diffrax. Note that, however, this model is not identifiable.
SIR model
In this model, we have functions $s$ and $r$ representing susceptible and recovered (immune) fraction of the population, as well as fraction of population infected with variant $k$, $i_k$, for $k=1, \dotsc, V$.
These models are, in principle, not compatible with the current logistic growth due to the used theta, which is a single array. This will require defining more flexible growth models. One possible approach to this is in #20.
@dr-david We discussed using compartmental models a few times, I've decided to write it down here, so I don't forget the equations.
There are several compartmental models.
Two of them are described at the end of this issue.
Using Diffrax we can implement them and model how the fraction of particular variant changes over the time, i.e.,
and see how well the logistic growth approximates this dynamics over the time.
Note that we can:
SIR model
In this model, we have functions$s$ and $r$ representing susceptible and recovered (immune) fraction of the population, as well as fraction of population infected with variant $k$ , $i_k$ , for $k=1, \dotsc, V$ .
SIS model
In this model, we do not have the recovered population.
Tasks
The text was updated successfully, but these errors were encountered: