Skip to content

Commit 7c94e65

Browse files
committed
fix integration tests
1 parent f7511b2 commit 7c94e65

File tree

1 file changed

+11
-7
lines changed

1 file changed

+11
-7
lines changed

integration_tests/small1_test.py

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -100,13 +100,17 @@ def evaluate_results(run_id):
100100
logger.info("run evaluation")
101101
cfg = omegaconf.OmegaConf.create(
102102
{
103-
"verbose": True,
104-
"image_format": "png",
105-
"dpi_val": 300,
106-
"summary_plots": True,
107-
"summary_dir": "./plots/",
108-
"print_summary": True,
109-
"evaluation": {"metrics": ["rmse", "l1", "mse"]},
103+
"global_plotting_options": {
104+
"image_format": "png",
105+
"dpi_val": 300,
106+
},
107+
"evaluation": {
108+
"metrics": ["rmse", "l1", "mse"],
109+
"verbose": True,
110+
"summary_plots": True,
111+
"summary_dir": "./plots/",
112+
"print_summary": True,
113+
},
110114
"run_ids": {
111115
run_id: { # would be nice if this could be done with option
112116
"streams": {

0 commit comments

Comments
 (0)