@@ -11,7 +11,7 @@ Status](https://codecov.io/gh/AnotherSamWilson/ParBayesianOptimization/branch/ma
1111
1212# Parallelizable Bayesian Optimization
1313
14- <img src =' man/figures /icon.png' align = ' right ' height =" 300 " />
14+ <img src =' vignettes /icon.png' align = ' right ' height =" 300 " />
1515
1616This README contains a thorough walkthrough of Bayesian optimization and
1717the syntax needed to use this package, with simple and complex examples.
@@ -316,14 +316,14 @@ to see the results:
316316``` r
317317optObj $ scoreSummary
318318# > Epoch Iteration max_depth min_child_weight subsample gpUtility acqOptimum inBounds Elapsed Score nrounds errorMessage
319- # > 1: 0 1 2 1.670129 0.7880670 NA FALSE TRUE 0.13 0.9777163 2 NA
319+ # > 1: 0 1 2 1.670129 0.7880670 NA FALSE TRUE 0.11 0.9777163 2 NA
320320# > 2: 0 2 2 14.913213 0.8763154 NA FALSE TRUE 0.28 0.9763760 15 NA
321- # > 3: 0 3 4 18.833690 0.3403900 NA FALSE TRUE 0.47 0.9931657 18 NA
322- # > 4: 0 4 4 8.639925 0.5499186 NA FALSE TRUE 0.27 0.9981437 7 NA
321+ # > 3: 0 3 4 18.833690 0.3403900 NA FALSE TRUE 0.45 0.9931657 18 NA
322+ # > 4: 0 4 4 8.639925 0.5499186 NA FALSE TRUE 0.26 0.9981437 7 NA
323323# > 5: 1 5 4 21.871937 1.0000000 0.5857961 TRUE TRUE 0.14 0.9945933 1 NA
324324# > 6: 2 6 4 0.000000 0.9439879 0.6668303 TRUE TRUE 0.26 0.9990567 7 NA
325325# > 7: 3 7 5 1.395119 0.7071802 0.2973497 TRUE TRUE 0.23 0.9984577 4 NA
326- # > 8: 4 8 5 0.000000 0.2500000 0.3221660 TRUE TRUE 0.36 0.9994020 10 NA
326+ # > 8: 4 8 5 0.000000 0.2500000 0.3221660 TRUE TRUE 0.39 0.9994020 10 NA
327327```
328328
329329``` r
@@ -382,10 +382,10 @@ optimization steps, versus the 4 performed in the sequential example:
382382``` r
383383tWithPar
384384# > user system elapsed
385- # > 1.37 0.05 10.00
385+ # > 0.92 0.05 6.61
386386tNoPar
387387# > user system elapsed
388- # > 23.17 2.47 22.56
388+ # > 22.75 2.04 21.78
389389```
390390
391391## Sampling Multiple Promising Points at Once
@@ -417,8 +417,8 @@ sets in the next round of scoring function runs.
417417
418418Going back to the example in [ Simple
419419Example] ( https://github.com/AnotherSamWilson/ParBayesianOptimization#Simple-Example ) ,
420- (if you let this run for a few more iterations) you will notice this
421- chart is updated at each iteration:
420+ (if you let this run for a few more iterations and set `plotProgress =
421+ TRUE`) you will notice this chart is updated at each iteration:
422422
423423``` r
424424optObjSimp <- addIterations(optObjSimp ,2 ,verbose = FALSE )
0 commit comments