You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a constrained global optimization package built upon bayesian inference
27
27
and gaussian process, that attempts to find the maximum value of an unknown
28
28
function in as few iterations as possible. This technique is particularly
29
29
suited for optimization of high cost functions, situations where the balance
30
30
between exploration and exploitation is important.
31
31
32
-
## Important notice
33
-
With the release of version 1.0.0 a number of API breaking changes were introduced. I understand this can be a headache for some, but these were necessary changes that needed to be done and ultimately made the package better. If you have used this package in the past I suggest you take the basic and advanced tours (found in the examples folder) in order to familiarize yourself with the new API.
34
-
35
32
## Quick Start
36
33
See below for a quick tour over the basics of the Bayesian Optimization package. More detailed information, other advanced features, and tips on usage/implementation can be found in the [examples](https://github.com/fmfn/BayesianOptimization/tree/master/examples) folder. I suggest that you:
37
34
- Follow the
@@ -220,7 +217,7 @@ By default you can follow the progress of your optimization by setting `verbose>
220
217
221
218
222
219
```python
223
-
from bayes_opt.loggerimport JSONLogger
220
+
from bayes_opt.observerimport JSONLogger
224
221
from bayes_opt.event import Events
225
222
```
226
223
@@ -278,7 +275,7 @@ The latest release can be obtained by two ways:
0 commit comments