"name": "my-awesome-sweep",
"metric": {"name": "accuracy", "goal": "maximize"},
# read the current value of parameter "a" from wandb.config
wandb.log({"a": a, "accuracy": a + 1})
sweep_id = wandb.sweep(sweep_configuration)
wandb.agent(sweep_id, function=my_train_func)