We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7511b2 commit 7c94e65Copy full SHA for 7c94e65
integration_tests/small1_test.py
@@ -100,13 +100,17 @@ def evaluate_results(run_id):
100
logger.info("run evaluation")
101
cfg = omegaconf.OmegaConf.create(
102
{
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"]},
+ "global_plotting_options": {
+ "image_format": "png",
+ "dpi_val": 300,
+ },
+ "evaluation": {
+ "metrics": ["rmse", "l1", "mse"],
+ "verbose": True,
110
+ "summary_plots": True,
111
+ "summary_dir": "./plots/",
112
+ "print_summary": True,
113
114
"run_ids": {
115
run_id: { # would be nice if this could be done with option
116
"streams": {
0 commit comments