Skip to content

Commit 73cf784

Browse files
Incremented Version
1 parent c45a1f5 commit 73cf784

File tree

3 files changed

+18
-15
lines changed

3 files changed

+18
-15
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: ParBayesianOptimization
22
Title: Parallel Bayesian Optimization of Hyperparameters
3-
Version: 1.2.0
3+
Version: 1.2.1
44
Authors@R: person("Samuel", "Wilson", email = "[email protected]", role = c("aut", "cre"))
55
Description: Fast, flexible framework for implementing Bayesian optimization of model
66
hyperparameters according to the methods described in Snoek et al. <arXiv:1206.2944>.

NEWS.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
1+
## ParBayesianOptimization 1.2.1
2+
### Changes
3+
Fixed a bug with initgrid on scoring functions with dimensionality over 4.
4+
15
## ParBayesianOptimization 1.2.0
26

3-
# Changes
7+
### Changes
48
Improved the way error handling works - any errors encountered in initialization will be returned.
59

610
## ParBayesianOptimization 1.1.0
7-
8-
# Changes
11+
### Changes
912
Changed Gaussian Process package to DiceKriging. predict method is much faster.
1013
Added errorHandling parameter - bayesOpt() and addIterations() should now return results no matter what, unless errorHandling = 'stop'
1114
Added otherHalting parameter.

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![Build
55
Status](https://api.travis-ci.org/AnotherSamWilson/ParBayesianOptimization.svg)](https://travis-ci.org/AnotherSamWilson/ParBayesianOptimization)
66
[![CRAN\_Status\_Badge](http://www.r-pkg.org/badges/version/ParBayesianOptimization)](https://CRAN.R-project.org/package=ParBayesianOptimization)
7-
[![DEV\_Version\_Badge](https://img.shields.io/badge/Dev-1.2.0-blue.svg)](https://CRAN.R-project.org/package=ParBayesianOptimization)
7+
[![DEV\_Version\_Badge](https://img.shields.io/badge/Dev-1.2.1-blue.svg)](https://CRAN.R-project.org/package=ParBayesianOptimization)
88
[![CRAN\_Downloads](https://cranlogs.r-pkg.org/badges/ParBayesianOptimization)](https://CRAN.R-project.org/package=ParBayesianOptimization)
99
[![Coverage
1010
Status](https://codecov.io/gh/AnotherSamWilson/ParBayesianOptimization/branch/master/graph/badge.svg)](https://codecov.io/gh/AnotherSamWilson/ParBayesianOptimization/branch/master)
@@ -135,7 +135,7 @@ follows:
135135

136136
<center>
137137

138-
<img src="vignettes/UtilityFunctions.png" style="display: block; margin: auto;" />
138+
<img src="vignettes/UtilityFunctions.png" width="648" style="display: block; margin: auto;" />
139139

140140
</center>
141141

@@ -315,14 +315,14 @@ to see the results:
315315
``` r
316316
optObj$scoreSummary
317317
#> Epoch Iteration max_depth min_child_weight subsample gpUtility acqOptimum inBounds Elapsed Score nrounds errorMessage
318-
#> 1: 0 1 2 1.670129 0.7880670 NA FALSE TRUE 0.07 0.9777163 2 NA
319-
#> 2: 0 2 2 14.913213 0.8763154 NA FALSE TRUE 0.15 0.9763760 15 NA
320-
#> 3: 0 3 4 18.833690 0.3403900 NA FALSE TRUE 0.20 0.9931657 18 NA
321-
#> 4: 0 4 4 8.639925 0.5499186 NA FALSE TRUE 0.12 0.9981437 7 NA
322-
#> 5: 1 5 4 21.871937 1.0000000 0.5857961 TRUE TRUE 0.08 0.9945933 1 NA
323-
#> 6: 2 6 4 0.000000 0.9439879 0.6668303 TRUE TRUE 0.12 0.9990567 7 NA
318+
#> 1: 0 1 2 1.670129 0.7880670 NA FALSE TRUE 0.06 0.9777163 2 NA
319+
#> 2: 0 2 2 14.913213 0.8763154 NA FALSE TRUE 0.16 0.9763760 15 NA
320+
#> 3: 0 3 4 18.833690 0.3403900 NA FALSE TRUE 0.22 0.9931657 18 NA
321+
#> 4: 0 4 4 8.639925 0.5499186 NA FALSE TRUE 0.14 0.9981437 7 NA
322+
#> 5: 1 5 4 21.871937 1.0000000 0.5857961 TRUE TRUE 0.06 0.9945933 1 NA
323+
#> 6: 2 6 4 0.000000 0.9439879 0.6668303 TRUE TRUE 0.13 0.9990567 7 NA
324324
#> 7: 3 7 5 1.395119 0.7071802 0.2973497 TRUE TRUE 0.11 0.9984577 4 NA
325-
#> 8: 4 8 5 0.000000 0.2500000 0.3221660 TRUE TRUE 0.16 0.9994020 10 NA
325+
#> 8: 4 8 5 0.000000 0.2500000 0.3221660 TRUE TRUE 0.17 0.9994020 10 NA
326326
```
327327

328328
``` r
@@ -381,10 +381,10 @@ optimization steps, versus the 4 performed in the sequential example:
381381
``` r
382382
tWithPar
383383
#> user system elapsed
384-
#> 0.96 0.05 7.47
384+
#> 0.98 0.04 7.55
385385
tNoPar
386386
#> user system elapsed
387-
#> 23.33 0.83 22.74
387+
#> 23.44 1.25 22.47
388388
```
389389

390390
## Sampling Multiple Promising Points at Once

0 commit comments

Comments
 (0)