Gaussian optimization Convergence Warning #77
Replies: 2 comments 3 replies
-
Hello @glitchyordis, I am happy to help! Could you provide a small example, that I can run to reproduce this? The convergence-warning depends on the data that is provided to the gaussian-process. The data is the positions and scores collected during the optimization run. So the shape of the objective-function is a very important factor here. |
Beta Was this translation helpful? Give feedback.
-
I looked into the surface plot and the search-data. The bayesian optimization works just fine and does a great job finding the optimum (at n_iter ~15). This is very good if you consider, that the first 10 iterations are initializations. Sklearn is known for its verbose warnings. That is why many silence them via this code: def warn(*args, **kwargs):
pass
import warnings
warnings.warn = warn If you want further answers why the warning is necessary I would advice you to search in the sklearn project. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I got the following ConvergenceWarning while running BayesianOptimizer. Can you guide me on what values to choose and how to change them?
Beta Was this translation helpful? Give feedback.
All reactions