Skip to content

Commit

Permalink
make experiment runner more verbose
Browse files Browse the repository at this point in the history
  • Loading branch information
djpasseyjr committed Apr 11, 2024
1 parent e94a867 commit 752662f
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions experiments/exp2/runner/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,16 @@
dyn_args_list, method_arg_list = exp_tools.load_parameters(IS_TEST_RUN)
dyn_args = dyn_args_list[PARAM_IDX]

print(f"""EXPERIMENT PARAM IDX -- {PARAM_IDX}
--------------------------------------------
Location: {__file__}
Parameter Directory: {exp_tools.PARAM_DIR}
Output File: {exp_tools.save_file_path(PARAM_IDX)}
Dynamic Model: {dyn_args["model_type"]}
Model Params: {dyn_args["model_params"]}
--------------------------------------------
""")

# Check that the previous save file (if any) is consistent with experiment.
exp_tools.check_consistency(dyn_args, PARAM_IDX, OPT_ALL)

Expand Down

0 comments on commit 752662f

Please sign in to comment.