-
Notifications
You must be signed in to change notification settings - Fork 11
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
new location object in json files and load in model #56
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Bumps [cookiecutter](https://github.com/cookiecutter/cookiecutter) from 1.7.0 to 2.1.1. - [Release notes](https://github.com/cookiecutter/cookiecutter/releases) - [Changelog](https://github.com/cookiecutter/cookiecutter/blob/master/HISTORY.md) - [Commits](cookiecutter/cookiecutter@1.7.0...2.1.1) --- updated-dependencies: - dependency-name: cookiecutter dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]>
Add contributors to the code
Bump cookiecutter from 1.7.0 to 2.1.1
Add data class new
combine model_runner and model_runner_checkpoint
Add database connection
perf: Use Python builtin RNG to generate Bernoulli samples
perf: Use Python builtin random.random to generate Poisson samples
perf: Access grid content of single position directly
* Add boilerplate for the policy handler. * policyhandler --------- Co-authored-by: Santiago Nunez-Corrales <[email protected]>
* dwell time for locations * revise dwell time at locations * Update covidmodel.py --------- Co-authored-by: bodasong <[email protected]>
nunezco2
approved these changes
Feb 27, 2023
# given distribution | ||
location_probs = location_spec["proportions"] | ||
location_dwell_time = location_probs["dwell"] | ||
for x, y in zip(range(self.grid.width), range(self.grid.height)): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Space before the for
loop
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Add new json files containing location object
Load json file in modelrunner_group
Load location dwell time in covidmodel