Skip to content

Commit 6f1d49a

Browse files
Increment Version
1 parent de7a736 commit 6f1d49a

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
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.3
3+
Version: 1.2.4
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: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## ParBayesianOptimization 1.2.4
2+
### Changes
3+
Fixed a small bug that allowed duplicates to make their way into the candidate table.
4+
15
## ParBayesianOptimization 1.2.3
26
### Changes
37
Some suggested packages are now used conditionally in vignettes, reade, tests and examples since they might not be available on all checking machines.

README.md

Lines changed: 7 additions & 7 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.3-blue.svg)](https://CRAN.R-project.org/package=ParBayesianOptimization)
7+
[![DEV\_Version\_Badge](https://img.shields.io/badge/Dev-1.2.4-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)
@@ -321,10 +321,10 @@ optObj$scoreSummary
321321
#> 1: 0 1 2 1.670129 0.7880670 NA FALSE TRUE 0.14 0.9777163 2 NA
322322
#> 2: 0 2 2 14.913213 0.8763154 NA FALSE TRUE 0.36 0.9763760 15 NA
323323
#> 3: 0 3 4 18.833690 0.3403900 NA FALSE TRUE 0.44 0.9931657 18 NA
324-
#> 4: 0 4 4 8.639925 0.5499186 NA FALSE TRUE 0.24 0.9981437 7 NA
325-
#> 5: 1 5 4 21.871937 1.0000000 0.5857961 TRUE TRUE 0.13 0.9945933 1 NA
326-
#> 6: 2 6 4 0.000000 0.9439879 0.6668303 TRUE TRUE 0.25 0.9990567 7 NA
327-
#> 7: 3 7 5 1.395119 0.7071802 0.2973497 TRUE TRUE 0.19 0.9984577 4 NA
324+
#> 4: 0 4 4 8.639925 0.5499186 NA FALSE TRUE 0.25 0.9981437 7 NA
325+
#> 5: 1 5 4 21.871937 1.0000000 0.5857961 TRUE TRUE 0.12 0.9945933 1 NA
326+
#> 6: 2 6 4 0.000000 0.9439879 0.6668303 TRUE TRUE 0.28 0.9990567 7 NA
327+
#> 7: 3 7 5 1.395119 0.7071802 0.2973497 TRUE TRUE 0.22 0.9984577 4 NA
328328
#> 8: 4 8 5 0.000000 0.2500000 0.3221660 TRUE TRUE 0.31 0.9994020 10 NA
329329
```
330330

@@ -384,10 +384,10 @@ optimization steps, versus the 4 performed in the sequential example:
384384
``` r
385385
tWithPar
386386
#> user system elapsed
387-
#> 1.03 0.07 11.36
387+
#> 1.06 0.05 8.89
388388
tNoPar
389389
#> user system elapsed
390-
#> 27.30 3.13 24.99
390+
#> 26.41 2.73 24.66
391391
```
392392

393393
## Sampling Multiple Promising Points at Once

0 commit comments

Comments
 (0)