Tuesday 28 June 2022

Hyperparameter tunning with wandb - CommError: Sweep user not valid when trying to initial the sweep

I'mt rying to use wandb for hyperparameter tunning as described in this notebook (but using my dataframe and trying to do it on random forest regressor instead).

I'm trying to initial the sweep but I get the error:

sweep_configuration = {
    "name": "test-project",
    "method": "random",
    "entity":"my_name"ת
    "metric": {
        "name": "loss",
        "goal": "minimize"
    }
    
}

parameters_dict = {
    'n_estimators': {
        'values': [100,200,300]
        },
    'max_depth': {
        'values': [4,7,10,14]
        },
    'min_samples_split': {
          'values': [2,4,8]
        },
    
    'min_samples_leaf': {
          'values': [2,4,8]
        },
    
    
    'max_features': {
          'values': [1,7,10]
        },

    }

sweep_configuration['parameters'] = parameters_dict

sweep_id = wandb.sweep(sweep_configuration)


400 response executing GraphQL. {"errors":[{"message":"Sweep user not valid","path":["upsertSweep"]}],"data":{"upsertSweep":null}} wandb: ERROR Error while calling W&B API: Sweep user not valid (<Response [400]>)
CommError: Sweep user not valid

My end goal : to inital the sweep



from Hyperparameter tunning with wandb - CommError: Sweep user not valid when trying to initial the sweep

No comments:

Post a Comment