Now after some time, I realize I want to change something about my model. For example, here I want to sample more often. I would then stop the run and rerun my script with the correct resume ID
I think the behaviour wandb has, is to then have the config be changed to the second config online. Is the first config just overwritten or can it still be seen somewhere?
In my more concrete usecase, I might want to change more big things. For example: I have trained with one dataloader for some time, then wrote a more efficient dataloader and would like to switch.
Ideally I would want both of the information, the old and the new config to be seen. Is there a way to do this?
Hi @carla_s, thanks for your question! So you’re right that in the example you provided the config will be overwritten. You can add every config to a different key, this is:
However, if you’re changing big things, I would recommend you to use groups so that you create one separate run and you can access those runs individually but also visualize those runs grouped. Please let me know if this helps!