Wandb sweep project always getting created in a specific team

Following is my simple Python code along with the sweep.yaml file I am using:

import wandb
wandb.init(
    entity="kanishkanarch", 
    project="wandb-sweep-testing", 
    name="my_first_sweep"
)
config = wandb.config
seed = config.seed
sum = 0 
sum += seed
program: testing.py
method: random
metric:
  name: sum 
  goal: maximize
parameters:
  seed:
    min: 1
    max: 10

I created a public project on my personal wandb page by the name wandb-sweep-testing but whenever I run wandb sweep sweep.yaml file it shows that the project is getting created in another team that I am part of.

How can I make a project on my personal profile not on my team’s profile?

Hi @kanishkanarch,

You should be able to set all runs to log to your personal account through the settings page here : Weights & Biases under Project Defaults > Default Location to create new projects.

Thanks,
Ramit

1 Like

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.