Skip to content

Commit

Permalink
release: 0.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
be-marc committed Nov 13, 2023
1 parent 916740c commit 23cc47f
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: bbotk
Title: Black-Box Optimization Toolkit
Version: 0.7.2.9000
Version: 0.7.3
Authors@R:
c(person(given = "Marc",
family = "Becker",
Expand Down
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# bbotk 0.7.2.9000
# bbotk 0.7.3

* fix: `OptimInstance$print()` errored when the search space was empty.

Expand Down
32 changes: 16 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

# bbotk - Black-Box Optimization Toolkit

Package website: [release](https://bbotk.mlr-org.com/) |
Package website: [release](https://bbotk.mlr-org.com/) \|
[dev](https://bbotk.mlr-org.com/dev/)

<!-- badges: start -->
Expand All @@ -26,22 +26,22 @@ base package of [mlr3tuning](https://github.com/mlr-org/mlr3tuning),

The package includes the basic building blocks of optimization:

- `Optimizer`: Objects of this class allow you to optimize an object
- `Optimizer`: Objects of this class allow you to optimize an object
of the class `OptimInstance`.
- `OptimInstance`: Defines the optimization problem, consisting of an
- `OptimInstance`: Defines the optimization problem, consisting of an
`Objective`, the `search_space`, and a `Terminator`. All evaluations
on the `OptimInstance` will be automatically stored in its own
`Archive`.
- `Objective`: Objects of this class contain the objective function.
- `Objective`: Objects of this class contain the objective function.
The class ensures that the objective function is called in the right
way and defines, whether the function should be minimized or
maximized.
- `Terminator`: Objects of this class control the termination of the
- `Terminator`: Objects of this class control the termination of the
optimization independent of the optimizer.

## Resources

- Package
- Package
[vignette](https://CRAN.R-project.org/package=bbotk/vignettes/bbotk.html)

## Installation
Expand Down Expand Up @@ -120,16 +120,16 @@ as.data.table(instance$archive)
```

## x1 x2 y timestamp batch_nr x_domain_x1 x_domain_x2
## 1: -4.689827 -1.278761 -37.716445 2022-11-18 11:17:17 1 -4.689827 -1.278761
## 2: -5.930364 -4.400474 -54.851999 2022-11-18 11:17:17 2 -5.930364 -4.400474
## 3: 7.170817 -1.519948 -18.927907 2022-11-18 11:17:17 3 7.170817 -1.519948
## 4: 2.045200 -1.519948 7.807403 2022-11-18 11:17:17 4 2.045200 -1.519948
## 5: 2.045200 -2.064742 9.123250 2022-11-18 11:17:17 5 2.045200 -2.064742
## 6: 2.045200 -2.064742 9.123250 2022-11-18 11:17:17 6 2.045200 -2.064742
## 7: 2.045201 -2.064742 9.123250 2022-11-18 11:17:17 7 2.045201 -2.064742
## 8: 2.045199 -2.064742 9.123250 2022-11-18 11:17:17 8 2.045199 -2.064742
## 9: 2.045200 -2.064741 9.123248 2022-11-18 11:17:17 9 2.045200 -2.064741
## 10: 2.045200 -2.064743 9.123252 2022-11-18 11:17:17 10 2.045200 -2.064743
## 1: -4.689827 -1.278761 -37.716445 2023-11-13 10:35:33 1 -4.689827 -1.278761
## 2: -5.930364 -4.400474 -54.851999 2023-11-13 10:35:33 2 -5.930364 -4.400474
## 3: 7.170817 -1.519948 -18.927907 2023-11-13 10:35:33 3 7.170817 -1.519948
## 4: 2.045200 -1.519948 7.807403 2023-11-13 10:35:33 4 2.045200 -1.519948
## 5: 2.045200 -2.064742 9.123250 2023-11-13 10:35:33 5 2.045200 -2.064742
## 6: 2.045200 -2.064742 9.123250 2023-11-13 10:35:33 6 2.045200 -2.064742
## 7: 2.045201 -2.064742 9.123250 2023-11-13 10:35:33 7 2.045201 -2.064742
## 8: 2.045199 -2.064742 9.123250 2023-11-13 10:35:33 8 2.045199 -2.064742
## 9: 2.045200 -2.064741 9.123248 2023-11-13 10:35:33 9 2.045200 -2.064741
## 10: 2.045200 -2.064743 9.123252 2023-11-13 10:35:33 10 2.045200 -2.064743

### Quick optimization with `bb_optimize`

Expand Down
2 changes: 1 addition & 1 deletion man/mlr_terminators_evals.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 23cc47f

Please sign in to comment.