You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@zubatyuk Thanks for reporting the issue and sending a PR! Seems like init arg never existed for wandb.init function.
In pytorch-ignite code looks like it worked as no one previously tried to pass init as kwargs and by default it calls wandb.init.
In your use case are you passing it explicitly and which value do you pass?
wandb.init
function does not have 'init' keyword argument.Therefore, this code fails:
Solution is to pop 'init' key from kwargs.
The text was updated successfully, but these errors were encountered: