Skip to content

Commit 8ce2292

Browse files
anshulraifmfn
authored andcommitted
Fixed typos in README
1 parent ccf2ef8 commit 8ce2292

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Basic tour of the Bayesian Optimization package
6363

6464
## 1. Specifying the function to be optimized
6565

66-
This is a function optimization package, therefore the first and most important ingreedient is, of course, the function to be optimized.
66+
This is a function optimization package, therefore the first and most important ingredient is, of course, the function to be optimized.
6767

6868
**DISCLAIMER:** We know exactly how the output of the function below depends on its parameter. Obviously this is just an example, and you shouldn't expect to know it in a real scenario. However, it should be clear that you don't need to. All you need in order to use this package (and more generally, this technique) is a function `f` that takes a known set of parameters and outputs a real number.
6969

@@ -81,7 +81,7 @@ def black_box_function(x, y):
8181

8282
## 2. Getting Started
8383

84-
All we need to get started is to instanciate a `BayesianOptimization` object specifying a function to be optimized `f`, and its parameters with their corresponding bounds, `pbounds`. This is a constrained optimization technique, so you must specify the minimum and maximum values that can be probed for each parameter in order for it to work
84+
All we need to get started is to instantiate a `BayesianOptimization` object specifying a function to be optimized `f`, and its parameters with their corresponding bounds, `pbounds`. This is a constrained optimization technique, so you must specify the minimum and maximum values that can be probed for each parameter in order for it to work
8585

8686

8787
```python
@@ -204,7 +204,7 @@ optimizer.maximize(init_points=0, n_iter=0)
204204

205205
## 4. Saving, loading and restarting
206206

207-
By default you can follow the progress of your optimization by setting `verbose>0` when instanciating the `BayesianOptimization` object. If you need more control over logging/alerting you will need to use an observer. For more information about observers checkout the advanced tour notebook. Here we will only see how to use the native `JSONLogger` object to save to and load progress from files.
207+
By default you can follow the progress of your optimization by setting `verbose>0` when instantiating the `BayesianOptimization` object. If you need more control over logging/alerting you will need to use an observer. For more information about observers checkout the advanced tour notebook. Here we will only see how to use the native `JSONLogger` object to save to and load progress from files.
208208

209209
### 4.1 Saving progress
210210

0 commit comments

Comments
 (0)