Trying to fix bugs with config uploaded to wandb

This commit is contained in:
Dominik Moritz Roth 2023-07-08 11:48:21 +02:00
parent 0090d502f9
commit db5b9ac399

View File

@ -218,7 +218,7 @@ class Slate():
config = copy.deepcopy(orig_config)
with wandb.init(
project=project,
config=config,
config=copy.deepcopy(config),
**wandbC
) as run:
runner(self, run, config)