BayesianOptimization
BayesianOptimization copied to clipboard
A Python implementation of global optimization with gaussian processes.
Fix #504 Demo: https://till-m.github.io/BayesianOptimization/ This adds a version dropdown to our docs page. In the future, any new release will be added to this version dropdown automatically. Similarly, it will...
Sister PR to #509 -- please see there for information about this PR.
related: #493 I didn't use the generic and added type hints using primitive types in most cases. Therefore, I ignored some types with `Any`. I also ignored some errors from...
c.f. #514 **Demo** ```python import numpy as np from bayes_opt import BayesianOptimization x = np.array([ 0.00869858, 0.01304788, 0.02174646, 0.03044504, 0.03914363, 0.04784221, 0.05654079, 0.06523938, 0.07393796, 0.08263655, 0.09133513, 0.10003371, 0.1087323 , 0.11743088,...
Before I applied #497 it worked like this https://github.com/bayesian-optimization/BayesianOptimization/blob/bc9af23981cb22b98344424b5c2544b741b74938/bayes_opt/logger.py#L167 but after, https://github.com/bayesian-optimization/BayesianOptimization/blob/16c00f3b7867d7cf43047b2c80d4b6e54156b5e8/bayes_opt/logger.py#L164 I expect it to work the same as before.
Hello, I am quite new to the package, so it is likely that I am missing something obvious (my sincerest apologies if this is the case). I have not been...
**Is your feature request related to a problem? Please describe.** Currently, we are hosting one version of the docs, specifically a version that is synced with `master`. However, users might...
Replace `queue` implemented using `list` with `deque`. The implementation with `list` appears to be due to the use of `append()` and #370 . If `append()` is used, `deque` is more...
With this PR, I hope to make it easier to catch errors while using `bayesian-optimization`.
When I looked at where `Events` is used, I realized that it would be better to inherit from `Enum`.