Closed swaheera closed 3 years ago
Can you paste the result from sessionInfo()
for me please. Also, when you see this:
Starting Epoch 3
1) Fitting Gaussian Process...
2) Running local optimum search...
- Convergence Not Found. Trying again with tighter parameters... 0.5 seconds
3) Running FUN 1 times in 1 thread(s)... 0.28 seconds
This means the optimization did actually converge, it just had to tighten the parameters a little bit on the second go-around.
Hello!
Great R package! I am trying to learn how to use this package for function optimization. I am following the example from this page (https://cran.r-project.org/web/packages/ParBayesianOptimization/vignettes/functionMaximization.html) - I tried to make a new example for a function with "multiple inputs".
For example:
When I look at the output for this example, it is indicated that the optimization algorithm did not converge:
Therefore, I tried to increase the number of iterations so that the algorithm might be able to find a better point:
But this produces the following error:
Do you have any idea why this error is being produced? Is it because I have ran the function too many times? In general, is there way to assess the quality of the solution provided by the bayesian optimization algorithm when convergence is not met?
Thanks for everything!