PyRoss is a numerical library for inference, forecasts, and optimal control of epidemiological models in Python
Project description
PyRoss: inference, forecasts, and optimised control for epidemiological models in Python
About | Blog | Installation | Examples | Publications | News | License | Documentation | Wiki
About
PyRoss is a numerical library that offers an integrated platform for inference, forecasts and non-pharmaceutical interventions in structured epidemiological compartment models.
Compartment models of arbitrary complexity can be user-defined through Python dictionaries. The most common epidemiological models, and several less common ones, come pre-defined with the library. Models can include stages to allow for non-exponentially distributed compartmental residence times. Currently, pre-defined models include ones with multiple disease states (exposed, asymptomatic, symptomatic, etc) and may be further divided by age, and by objective medical states (hospitalized, in ICU, etc). The compartment framework supports models for disease surveillance and quarantine and a variety of other processes of epidemiological relevance.
Generative processes can be formulated stochastically (as Markov population processes) or deterministically (as systems of differential equations). Population processes are sampled exactly by the Doob-Gillespie algorithm or approximately by the tau-leaping algorithm while differential equations are integrated by both fixed and adaptive time-stepping. A hybrid algorithm transits dynamically between these depending on the magnitude of the compartmental fluctuations.
Bayesian inference on pre-defined or user-defined models is performed using model-adapted Gaussian processes derived from functional limit theorems for Markov population process. Generative models are fitted to data through the surveillance model allowing for possibily unobserved compartments. The MAP estimates of parameters and their standard errors can be obtained rapidly by optimising, obviating the need for expensive Markov chain Monte Carlo. This enables the fast evaluation of the model evidence, through which competing models may be objectively compared and their forecasts combined by Bayesian model averaging. Forecasts of disease progression, then, can be fully Bayesian, convolving uncertainties in data, parameters and models. The sensitivity of these forecasts is estimated through the Fisher information matrix.
Non-pharmaceutical interventions are implemented as modifications of the contact structures of the model. Optimised control of these structures, given cost functions, is possible. This feature is being actively developed to be better integrated with the library.
PyRossGeo is a companion library that supports spatially resolved compartment models with explicit commuting networks.
The libraries are named after Sir Ronald Ross, doctor, mathematician and poet. In 1898 he made "the great discovery" in his laboratory in Calcutta "that malaria is conveyed by the bite of a mosquito". He won the Nobel Prize in 1902 and laid the foundations of the mathematical modelling of infectious diseases.
The authors are part of The Rapid Assistance in Modelling the Pandemic (RAMP) taskforce at the University of Cambridge. In alphabetical order, we are: Ronojoy Adhikari, Austen Bolitho, Erik Brorson, Fernando Caballero, Michael Cates, Jakub Dolezal, Tim Ekeh, Jules Guioth, Robert Jack, Julian Kappler, Lukas Kikuchi, Hideki Kobayashi, Irene Li, Joseph Peterson, Patrick Pietzonka, Benjamin Remez, Paul Rohrbach, Rajesh Singh, and Günther Turk.
PyRoss development is partially supported by a Microsoft Research Award for "Building an open platform for pandemic modelling".
Please read the PyRoss paper and PyRoss Wiki before you use PyRoss for your research. Open an issue, in preference to emailing us with queries. Join our Slack channel for discussion. Please follow the Contributor Covenant in all PyRoss fora. Thank you!
Installation
You can take PyRoss for a spin without installation: . Please be patient while Binder loads.
From a checkout of this repository
Install PyRoss and an extended list of dependencies using
>> git clone https://github.com/rajeshrinet/pyross.git
>> cd pyross
>> pip install -r requirements.txt
>> python setup.py install
Install PyRoss and an extended list of dependencies, via Anaconda, in an environment named pyross
:
>> git clone https://github.com/rajeshrinet/pyross.git
>> cd pyross
>> make env
>> conda activate pyross
>> make
Via pip
Install the latest PyPI version
>> pip install pyross
Testing
Short test of initialisation and running
>> make test
Long test of all example notebooks. Optionally can specify path and recursion to test a certain subset of notebooks
>> make nbtest -e path=examples/deterministic/
Age structure data: Population Pyramid website
Contact structure data: Projecting social contact matrices in 152 countries using contact surveys and demographic data, Kiesha Prem, Alex R. Cook, Mark Jit, PLOS Computational Biology, (2017)
Examples
PyRoss has model-agnostic, formulation-agnostic intuitive interface. Once a model is instantiated, stochastic, deterministic and hybrid simulations can be performed through the same interface. The example below shows how to set up a deterministic SIR simulation with three age-groups.
# M=3, SIR with three age-groups
import numpy as np
import pyross
import matplotlib.pyplot as plt
model_spec = { "classes" : ["S", "I"],
"S" : {
"constant" : [ ["k"] ],
"infection" : [ ["I", "-beta"] ]
},
"I" : {
"linear" : [ ["I", "-gamma"] ],
"infection" : [ ["I", "beta"] ]
}
}
parameters = {
'beta' : 0.1,
'gamma' : 0.1,
'k' : 1,
}
M=3; Ni=1000*np.ones(M); N=np.sum(Ni)
# Initial conditions as an array
x0 = np.array([
999, 1000, 1000, # S
1, 0, 0, # I
])
# Or initial conditions as a dictionary
I0 = [10, 10, 10]
S0 = [n-20 for n in Ni]
x0 = {
'S' : S0,
'I' : I0
}
CM = np.array([
[1, 0.5, 0.1],
[0.5, 1, 0.5],
[0.1, 0.5, 1 ]
], dtype=float)
def contactMatrix(t):
return CM
# duration of simulation and data file
Tf = 160; Nf=Tf+1;
model = pyross.deterministic.Spp(model_spec, parameters, M, Ni)
# simulate model
data = model.simulate(x0, contactMatrix, Tf, Nf)
# plot the data and obtain the epidemic curve
S = np.sum(model.model_class_data('S', data), axis=1)
I = np.sum(model.model_class_data('I', data), axis=1)
R = np.sum(model.model_class_data('R', data), axis=1)
t = data['t']
fig = plt.figure(num=None, figsize=(10, 8), dpi=80, facecolor='w', edgecolor='k')
plt.rcParams.update({'font.size': 22})
plt.fill_between(t, 0, S/N, color="#348ABD", alpha=0.3)
plt.plot(t, S, '-', color="#348ABD", label='$S$', lw=4)
plt.fill_between(t, 0, I/N, color='#A60628', alpha=0.3)
plt.plot(t, I, '-', color='#A60628', label='$I$', lw=4)
plt.fill_between(t, 0, R/N, color="dimgrey", alpha=0.3)
plt.plot(t, R, '-', color="dimgrey", label='$R$', lw=4)
plt.legend(fontsize=26); plt.grid()
plt.autoscale(enable=True, axis='x', tight=True)
plt.ylabel('Compartment value')
plt.xlabel('Days');
Read more in the examples folders.
Publications
-
Bayesian inference across multiple models suggests a strong increase in lethality of COVID-19 in late 2020 in the UK. Patrick Pietzonka, Erik Brorson, William Bankes, Michael E. Cates, Robert L. Jack, R. Adhikari medRxiv, 2021
-
Efficient Bayesian inference of fully stochastic epidemiological models with applications to COVID-19. Yuting I. Li, Günther Turk, Paul B. Rohrbach, Patrick Pietzonka, Julian Kappler, Rajesh Singh, Jakub Dolezal, Timothy Ekeh, Lukas Kikuchi, Joseph D. Peterson, Hideki Kobayashi, Michael E. Cates, R. Adhikari, Robert L. Jack, arXiv:2010.11783, 2020 | ResearchGate
-
Efficient and flexible methods for time since infection models, Joseph D. Peterson, R. Adhikari, arXiv:2010.10955, 2020
-
Inference, prediction and optimization of non-pharmaceutical interventions using compartment models: the PyRoss library. R. Adhikari, Austen Bolitho, Fernando Caballero, Michael E. Cates, Jakub Dolezal, Timothy Ekeh, Jules Guioth, Robert L. Jack, Julian Kappler, Lukas Kikuchi, Hideki Kobayashi, Yuting I. Li, Joseph D. Peterson, Patrick Pietzonka, Benjamin Remez, Paul B. Rohrbach, Rajesh Singh, and Günther Turk, arXiv:2005.09625, 2020 | ResearchGate.
-
Age-structured impact of social distancing on the COVID-19 epidemic in India. Rajesh Singh and R. Adhikari, arXiv:2003.12055, 2020 | ResearchGate.
News
-
A partial list of news articles on PyRoss-based research: Zee News | Varsity | The Weekend Leader | The Weather Channel | The Tribune | The Times of India | The Telegraph | The Northlines | The New Indian Express | The Federal | Swarajya | Snoop Tales | Scroll.in | Rediff.com | The Quint | People's Reporter | News Bundle | Newsgram | Nature News | Mathrubhumi | liveMint | India New England News | India Today | Indian Express: Bangla | Indian Blooms | Dainik Bhaskar | CNN | CCN | Business Standard | Asiaville
-
Python Trending has tweeted about PyRoss
PyRoss - Mathematical modelling of infectious disease in Python. https://t.co/VBOmT5kaVT https://t.co/FRvEqWMlPL
— Python Trending (@pythontrending) March 31, 2020 -
Python Weekly has tweeted about PyRoss
PyRoss - Mathematical modelling of infectious disease in Python. https://t.co/MyTWTM1ItP #Python #Coronavirus #Covid19 pic.twitter.com/gzPNpWf7mK
— Python Weekly (@PythonWeekly) April 9, 2020
License
We believe that openness and sharing improves the practice of science and increases the reach of its benefits. This code is released under the MIT license. Our choice is guided by the excellent article on Licensing for the scientist-programmer.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for pyross-1.3.8-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3e3c0cef2d06835584fe1aac60cc924f83432952b3403347c1f3daf9422811ba |
|
MD5 | 3ffd15798c145a90d16cee393152686b |
|
BLAKE2b-256 | c37f708a98022c921c8e8849b3c73dafe7e3b937b3de5e118f0567ee0ff41a97 |