I am adding a tag to some runs with the SDK with a script that looks roughly like this:
filter = ... # some filter
runs = wandb.Api().runs('ucd-cnml/retinal_genotype', filter=filter)
for run in runs:
run.tags.append('a_tag')
run.update()
After this, the config is removed from the overview page (first screenshot). However, the raw data is still there (second screenshot).
This would appear to be related to this issue. I’m on wandb 0.16.4, so after any fixes to that have been merged presumably (I can’t really tell as there’s no linked PR).
Here is an example run that exhibits this behavior: Weights & Biases