Hi
Im wondering if its possible to have hp-sweep and instantiating wandb agent (using wandb.agent api) , such that the function will have arguments, in all of the example I’ve seen that the passed functions to wandb.agent has no args at all.
My training script looks as follows
def trainer(input1, input2, input3):
# construct cfg file given the inputs
# passing the cfg file to wandb.init()
# receiving the returned config from wandb.config (with the decided params by the wandb Params controler)
# Continue training as usual, given the latest cfg.
I will be happy to get some inspiration about other ways to implement this
Hope this is helpful
Dor