Hi,
Since today I’m getting an empty config back when trying to resume a run via
common_args = dict(project=cli_args.wandb_project,
group=cli_args.wandb_group,
entity=cli_args.wandb_entity,
sync_tensorboard=True,
monitor_gym=False,
mode="online",)
wandb.init(id=cli_args.resume_id,
resume="must",
**common_args)
print(wandb.config)
This just returns an empty dict. I’ve checked that the run exists, wandb.run.url returns the right id, and other information of the run object, such as wandb.run.step are correct. Online I can also see the config values. Any ideas what the issue might be? Any issues on the backend not returning the values? I’ve used this exact code for a long time without any problems.