-
Notifications
You must be signed in to change notification settings - Fork 47
How to initialize the SEIR model with fixed epidemic states? #364
Comments
Sorry for this oversight -- I hope to update the documentation over the next few days as we are planning to merge some new features into the master branch. |
Okay, thank you! |
@vineetmp It turns out that this feature was something that was implemented in a branch that did was not merged in for this release. We'll be removing that section of the methods in the preprint (thanks to your tip!). Sorry to disappoint. |
@eclee25 Oh okay, thanks for the quick response. I thought you are using this same pipeline to generate forecasts for CDC. If that is the case, what parameters do you change when you rerun the model to update your forecasts weekly? I ran all the steps mentioned in your documentation for COVID19_Minimal after editing the config etc. for all US counties, without any interventions (parameter set to |
The model runs that we submit to CDC are based on the same core model code but with substantial updates and changes to model deployment that are not very well documented yet. We run off the inference branch and the config changes are mostly documented here: https://github.com/HopkinsIDD/COVIDScenarioPipeline/wiki/Inference-model-configuration-setup. The full inference setup is deployed on AWS batch for runs of the full US. I would not recommend using the inference code locally unless you have few locations (e.g., ~10). The model that is currently in master/dev is our scenario planning model only, which means that there is no fitting procedure to calibrate case and death time series to the model outputs. |
@eclee25 Okay, thank you! I will look into the inference branch and see if that helps my use case. |
How do I initialize the SEIR model with a known number of infections in each US county, say on 7/31/20 and generate forecasts for the period 8/1/20 to 8/31/20? I see that this document mentions that it is possible, but doesn't explain how. I know that I have to run
simulate.py
and that I have to set the paramsstart_date
andend_date
as2020-08-01
and2020-08-31
respectively. I have also followed instructions provided here to set the other parameters. However, when it comes to seeding parameters/file, I can get the actual case data on 7/31/2020 from JHU CSSE, but how do I feed that into the model as the seed? Which parameter should I use?Also, thanks to the authors for sharing the code!
The text was updated successfully, but these errors were encountered: