Skip to content

Commit

Permalink
fix flepi_prefix to underscores
Browse files Browse the repository at this point in the history
  • Loading branch information
saraloo committed Oct 20, 2023
1 parent f5da3ff commit 8e421d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion batch/inference_job_launcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -712,7 +712,7 @@ def launch(self, job_name, config_file, seir_modifiers_scenarios, outcome_modifi
cur_env_vars = base_env_vars.copy()
cur_env_vars.append({"name": "FLEPI_SEIR_SCENARIOS", "value": s})
cur_env_vars.append({"name": "FLEPI_OUTCOME_SCENARIOS", "value": d})
cur_env_vars.append({"name": "FLEPI_PREFIX", "value": f"{config['name']}/{s}/{d}"})
cur_env_vars.append({"name": "FLEPI_PREFIX", "value": f"{config['name']}_{s}_{d}"})
cur_env_vars.append({"name": "FLEPI_BLOCK_INDEX", "value": "1"})
cur_env_vars.append({"name": "FLEPI_RUN_INDEX", "value": f"{self.run_id}"})
if not (self.restart_from_location is None):
Expand Down

0 comments on commit 8e421d1

Please sign in to comment.