Save wandb config file as hyperparameter #14561
-
I was wondering if there is some way to save a WandB config file using the A main file with:
And then a trainer file with:
And in the rest of the trainer all kinds of parameters are an attribute of that config. But when I try to save that config using the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Apparently it has something to do with the config from WandB. The issue is that WandB config is a managed object so it really can't cleanly be deepcopy'ed. Using the static_config from WandB is serializable and works just fine! |
Beta Was this translation helpful? Give feedback.
Apparently it has something to do with the config from WandB. The issue is that WandB config is a managed object so it really can't cleanly be deepcopy'ed. Using the static_config from WandB is serializable and works just fine!