Skip to content
This repository has been archived by the owner on Jul 24, 2024. It is now read-only.

Commit

Permalink
Merge branch 'mobility_fix' into groundtruth_refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
jkamins7 committed Sep 1, 2021
2 parents 5613018 + ac9a28a commit 6f0cb21
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion SEIR/NPI/Stacked.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def __init__(self, *, npi_config, global_config, geoids, loaded_df=None):
self.reduction_params.clear()

for param in self.param_name:
if not re.match("^transition_rate \d+$",param):
if not re.match("^transition_rate [1234567890]+$",param):
self.reductions[param] = 1 - self.reductions[param]

self.__checkErrors()
Expand Down
2 changes: 1 addition & 1 deletion batch/inference_runner.sh
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ DVC_OUTPUTS_ARRAY=($DVC_OUTPUTS)
if [ -n "$S3_LAST_JOB_OUTPUT" ]; then
if [ $COVID_BLOCK_INDEX -eq 1 ]; then
export RESUME_RUN_INDEX=$COVID_OLD_RUN_INDEX
export PARQUET_TYPES="seed spar snpi seir hpar hnpi hosp"
export PARQUET_TYPES="seed spar snpi hpar hnpi"
else
export RESUME_RUN_INDEX=$COVID_RUN_INDEX
export PARQUET_TYPES="seed spar snpi seir hpar hnpi hosp llik"
Expand Down

0 comments on commit 6f0cb21

Please sign in to comment.