Search code examples
jupyter-labwandb

jupyterLab Wandb does not iterative


I try to use WanDB but when i use wandb.init() there is nothing.!

enter image description here

I am waiting a lot of time.

However, there is nothing in window.

This is working well in Kernel.

please.. help me guys


Solution

  • I work at Weights & Biases. If you're in a notebook the quickest thing you can do to get going with wandb is simply:

    wandb.init(project=MY_PROJECT, entity=MY_ENTITY)
    

    No !wandb login, wandb.login() or %%wandb needed. If you're not already logged in then wandb.init will ask you for you API key.

    (curious where you found %%wandb by the way?)