From db5b9ac39940b4ddf9f899078ce0d2616c143134 Mon Sep 17 00:00:00 2001 From: Dominik Roth Date: Sat, 8 Jul 2023 11:48:21 +0200 Subject: [PATCH] Trying to fix bugs with config uploaded to wandb --- slate/slate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slate/slate.py b/slate/slate.py index 5329172..5ee69a4 100644 --- a/slate/slate.py +++ b/slate/slate.py @@ -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)