hey @ht99 - your observation is correct; we don’t support using .copy()
with wandb.config
since this is not a standard python dictionary but rather a wandb.sdk.wandb_config.Config
object. I recommend changing the config.copy()
line to config.as_dict().copy()
if you’d like to do dictionary operations on wandb.config
going forward