Hello, I was founder of a startup that had an account called deepdiscovery-ai
and that company died. I want to use my Free personal account instead. There is no way for me to do this, however, because even when I select my Personal account from the top right user icon menu and copy that key when I wandb login --relogin
, my Jupyter Notebook runs wandb.login()
and it prints out this indicating that it is using the deepdiscovery-ai
account
My code is:
import os
import wandb
os.environ["WANDB_PROJECT"] = "libpostal-reborn"
# Login to wandb. Comment out if you already have.
wandb.login()
I see:
DEBUG:urllib3.connectionpool:Starting new HTTP connection (1): localhost:8888
DEBUG:urllib3.connectionpool:http://localhost:8888 "GET /api/sessions?token= HTTP/1.1" 200 476
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.wandb.ai:443
DEBUG:urllib3.connectionpool:https://api.wandb.ai:443 "POST /graphql HTTP/1.1" 200 None
DEBUG:urllib3.connectionpool:https://api.wandb.ai:443 "POST /graphql HTTP/1.1" 200 None
wandb: Currently logged in as: rjurney (deep-discoveryai). Use `wandb login --relogin` to force relogin
Note it says rjurney (deep-discoveryai)
and I can’t get runs to appear in my Personal account. How do I remove the deepdiscovery-ai
organization from my account completely so I can only use my Personal account?