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?