`wandb.init` function does not have 'init' keyword argument. Therefore, [this code](https://github.com/pytorch/ignite/blob/4c93282385353b585b4536c4553589af7dd58af0/ignite/handlers/wandb_logger.py#L136-L137) fails: ``` if kwargs.get("init", True): wandb.init(*args, **kwargs) ``` Solution is to pop 'init' key from kwargs.