Unverified Commit 1c19b423 authored by Boris Dayma's avatar Boris Dayma Committed by GitHub
Browse files

fix(wandb): fix config (#9489)

parent 02e05fb0
......@@ -333,9 +333,9 @@ class WandbCallback(TrainerCallback):
logger.warning(
"W&B installed but not logged in. Run `wandb login` or set the WANDB_API_KEY env variable."
)
self._wandb = wandb
else:
self._wandb = None
else:
self._wandb = wandb
self._initialized = False
def setup(self, args, state, model, reinit, **kwargs):
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment