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 89cb962 commit f34e96aCopy full SHA for f34e96a
src/utilities/config_utils.py
@@ -243,6 +243,8 @@ def extras(
243
wandb_status = "new"
244
runs_in_group = get_existing_wandb_group_runs(config, ckpt_must_exist=True, only_best_and_last=False)
245
for other_run in runs_in_group:
246
+ if not hasattr(other_run.config, "get"):
247
+ continue
248
other_seed = other_run.config.get("seed")
249
if "," in str(other_seed):
250
# wrong seed has been logged, use the one from the name
0 commit comments