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 7c94e65 commit 892af4fCopy full SHA for 892af4f
packages/common/src/weathergen/common/config.py
@@ -119,8 +119,8 @@ def _check_logging(config: Config) -> Config:
119
Apply fixes to log frequency config.
120
"""
121
config = config.copy()
122
- if config.get("log_intervals") is None: # TODO remove this for next version
123
- config.log_intervals = OmegaConf.construct(
+ if config.get("train_log_freq") is None: # TODO remove this for next version
+ config.train_log_freq = OmegaConf.construct(
124
{"checkpoint": 250, "terminal": 10, "metrics": config.train_log.log_interval}
125
)
126
0 commit comments