Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Seeding with new parameters #32

Open
HSalat opened this issue Sep 7, 2022 · 2 comments
Open

Seeding with new parameters #32

HSalat opened this issue Sep 7, 2022 · 2 comments
Assignees

Comments

@HSalat
Copy link
Collaborator

HSalat commented Sep 7, 2022

## TODO needs to be revised/updated by Hadrien

people_ages = self.start_snapshot.buffers.people_ages
people_obesity = self.start_snapshot.buffers.people_obesity

Replace with morbidity buffer (I guess incorrectly named age_morbidity_multipliers), let's call it people_morbidity

symptomatic_prob = cov_params.age_morbidity_multipliers[ #TODO ask Hadrien, now we use "age_morbidity_multipliers", rather than symptomatic_probs
        min(math.floor(people_ages[i] / 10), 8)
]
if people_obesity[i] > 2:
        symptomatic_prob = symptomatic_prob * cov_params.symptomatic_multiplier #TODO here we will use symptomatic_multiplier, rather than overweight_sympt_mplier

Replace with:

symptomatic_prob = people_morbidity[i]
@mfbenitezp
Copy link
Collaborator

There is no people_morbidity buffer...What attribute that buffer should fetch?

@HSalat
Copy link
Collaborator Author

HSalat commented Sep 9, 2022

"Replace with morbidity buffer (I guess incorrectly named age_morbidity_multipliers), let's call it people_morbidity"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants