Open Femme-js opened 1 year ago
This issue is resolved.
There was a problem with the objective function. According to the documentation, the n_d and n_a parameters were not given the correct syntax.
Earlier, it was
n_d = trial.suggest_categorical("n_d", [8, 16, 32, 64])
I changed it to
n_d = trial.suggest_int("n_d", low = 8, high = 64, step = 8)
The main.py in this repo gives the following error when running the main.py file.