Skip to content

Commit

Permalink
flepi_prefix in inference_job_launcher fix
Browse files Browse the repository at this point in the history
  • Loading branch information
saraloo committed Oct 20, 2023
1 parent 8e421d1 commit d7de737
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 @@ -839,7 +839,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": f"{block_idx+1}"})
cur_env_vars.append({"name": "FLEPI_RUN_INDEX", "value": f"{self.run_id}"})
cur_env_vars.append({"name": "OLD_FLEPI_RUN_INDEX", "value": f"{self.run_id}"})
Expand Down

0 comments on commit d7de737

Please sign in to comment.