-
-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
53 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,51 @@ | ||
Package: mlrMBO | ||
Title: Bayesian Optimization and Model-Based Optimization of Expensive Black-Box Functions | ||
Title: Bayesian Optimization and Model-Based Optimization of Expensive | ||
Black-Box Functions | ||
Version: 1.1.5-9000 | ||
Description: Flexible and comprehensive R toolbox for model-based optimization | ||
('MBO'), also known as Bayesian optimization. It implements the Efficient | ||
Global Optimization Algorithm and is designed for both single- and multi- | ||
objective optimization with mixed continuous, categorical and conditional | ||
parameters. The machine learning toolbox 'mlr' provide dozens of regression | ||
learners to model the performance of the target algorithm with respect to | ||
the parameter settings. It provides many different infill criteria to guide | ||
the search process. Additional features include multi-point batch proposal, | ||
parallel execution as well as visualization and sophisticated logging | ||
mechanisms, which is especially useful for teaching and understanding of | ||
algorithm behavior. 'mlrMBO' is implemented in a modular fashion, such that | ||
single components can be easily replaced or adapted by the user for specific | ||
use cases. | ||
Authors@R: c( | ||
person("Bernd", "Bischl", email = "[email protected]", role = c("aut"), comment = c(ORCID = "0000-0001-6002-6980")), | ||
person("Jakob", "Richter", email = "[email protected]", role = c("aut", "cre"), comment = c(ORCID = "0000-0003-4481-5554")), | ||
person("Jakob", "Bossek", email = "[email protected]", role = "aut", comment = c(ORCID = "0000-0002-4121-4668")), | ||
person("Daniel", "Horn", email = "[email protected]", role = "aut"), | ||
person("Michel", "Lang", email = "[email protected]", role = "aut", comment = c(ORCID = "0000-0001-9754-0393")), | ||
person("Janek", "Thomas", email = "[email protected]", role = "aut", comment = c(ORCID = "0000-0003-4511-6245"))) | ||
Authors@R: | ||
c(person(given = "Bernd", | ||
family = "Bischl", | ||
role = "aut", | ||
email = "[email protected]", | ||
comment = c(ORCID = "0000-0001-6002-6980")), | ||
person(given = "Jakob", | ||
family = "Richter", | ||
role = c("aut", "cre"), | ||
email = "[email protected]", | ||
comment = c(ORCID = "0000-0003-4481-5554")), | ||
person(given = "Jakob", | ||
family = "Bossek", | ||
role = "aut", | ||
email = "[email protected]", | ||
comment = c(ORCID = "0000-0002-4121-4668")), | ||
person(given = "Daniel", | ||
family = "Horn", | ||
role = "aut", | ||
email = "[email protected]"), | ||
person(given = "Michel", | ||
family = "Lang", | ||
role = "aut", | ||
email = "[email protected]", | ||
comment = c(ORCID = "0000-0001-9754-0393")), | ||
person(given = "Janek", | ||
family = "Thomas", | ||
role = "aut", | ||
email = "[email protected]", | ||
comment = c(ORCID = "0000-0003-4511-6245"))) | ||
Description: Flexible and comprehensive R toolbox for model-based | ||
optimization ('MBO'), also known as Bayesian optimization. It | ||
implements the Efficient Global Optimization Algorithm and is designed | ||
for both single- and multi- objective optimization with mixed | ||
continuous, categorical and conditional parameters. The machine | ||
learning toolbox 'mlr' provide dozens of regression learners to model | ||
the performance of the target algorithm with respect to the parameter | ||
settings. It provides many different infill criteria to guide the | ||
search process. Additional features include multi-point batch | ||
proposal, parallel execution as well as visualization and | ||
sophisticated logging mechanisms, which is especially useful for | ||
teaching and understanding of algorithm behavior. 'mlrMBO' is | ||
implemented in a modular fashion, such that single components can be | ||
easily replaced or adapted by the user for specific use cases. | ||
License: BSD_2_clause + file LICENSE | ||
URL: https://github.com/mlr-org/mlrMBO | ||
BugReports: https://github.com/mlr-org/mlrMBO/issues | ||
|
@@ -38,11 +63,12 @@ Imports: | |
Suggests: | ||
akima, | ||
cmaesr (>= 1.0.3), | ||
ggplot2, | ||
covr, | ||
DiceKriging, | ||
earth, | ||
emoa, | ||
GGally, | ||
ggplot2, | ||
gridExtra, | ||
kernlab, | ||
kknn, | ||
|
@@ -52,12 +78,12 @@ Suggests: | |
party, | ||
randomForest, | ||
reshape2, | ||
rmarkdown, | ||
rgenoud, | ||
rmarkdown, | ||
rpart, | ||
testthat, | ||
covr | ||
Encoding: UTF-8 | ||
testthat | ||
VignetteBuilder: | ||
knitr | ||
ByteCompile: yes | ||
Encoding: UTF-8 | ||
RoxygenNote: 7.1.1 | ||
VignetteBuilder: knitr |