|
1 | 1 | Package: mlrMBO |
2 | | -Title: A Toolbox for Model-Based Optimization of Expensive Black-Box Functions |
| 2 | +Title: Bayesian Optimization and Model-Based Optimization of Expensive Black-Box Functions |
3 | 3 | Description: Flexible and comprehensive R toolbox for model-based optimization |
4 | | - ('MBO'), also known as Bayesian optimization. It is designed for both single- |
5 | | - and multi-objective optimization with mixed continuous, categorical and |
6 | | - conditional parameters. The machine learning toolbox 'mlr' provide dozens |
7 | | - of regression learners to model the performance of the target algorithm with |
8 | | - respect to the parameter settings. It provides many different infill criteria |
9 | | - to guide the search process. Additional features include multi-point batch |
10 | | - proposal, parallel execution as well as visualization and sophisticated |
11 | | - logging mechanisms, which is especially useful for teaching and understanding |
12 | | - of algorithm behavior. 'mlrMBO' is implemented in a modular fashion, such that |
13 | | - single components can be easily replaced or adapted by the user for specific use |
14 | | - cases. |
| 4 | + ('MBO'), also known as Bayesian optimization. It implements the Efficient |
| 5 | + Global Optimization Algorithm and is designed for both single- and multi- |
| 6 | + objective optimization with mixed continuous, categorical and conditional |
| 7 | + parameters. The machine learning toolbox 'mlr' provide dozens of regression |
| 8 | + learners to model the performance of the target algorithm with respect to |
| 9 | + the parameter settings. It provides many different infill criteria to guide |
| 10 | + the search process. Additional features include multi-point batch proposal, |
| 11 | + parallel execution as well as visualization and sophisticated logging |
| 12 | + mechanisms, which is especially useful for teaching and understanding of |
| 13 | + algorithm behavior. 'mlrMBO' is implemented in a modular fashion, such that |
| 14 | + single components can be easily replaced or adapted by the user for specific |
| 15 | + use cases. |
15 | 16 | Authors@R: c( |
16 | | - person("Bernd", "Bischl", email = " [email protected]", role = c("aut")), |
17 | | - person("Jakob", " Bossek", email = " [email protected]", role = "aut"), |
18 | | - person("Jakob", " Richter", email = " [email protected]", role = c("aut", "cre")), |
| 17 | + person("Bernd", "Bischl", email = " [email protected]", role = c("aut") , comment = c(ORCID = "0000-0001-6002-6980")), |
| 18 | + person("Jakob", " Richter", email = " [email protected]", role = c("aut" , "cre"), comment = c(ORCID = "0000-0003-4481-5554")), |
| 19 | + person("Jakob", " Bossek", email = " [email protected]", role = "aut", comment = c(ORCID = "0000-0002-4121-4668")), |
19 | 20 | person("Daniel", "Horn", email = " [email protected]", role = "aut"), |
20 | | - person("Michel", "Lang", email = " [email protected]", role = "aut"), |
21 | | - person("Janek", "Thomas", email = " [email protected]", role = "aut")) |
| 21 | + person("Michel", "Lang", email = " [email protected]", role = "aut" , comment = c(ORCID = "0000-0001-9754-0393")), |
| 22 | + person("Janek", "Thomas", email = " [email protected]", role = "aut" , comment = c(ORCID = "0000-0003-4511-6245"))) |
22 | 23 | License: BSD_2_clause + file LICENSE |
23 | 24 | URL: https://github.com/mlr-org/mlrMBO |
24 | 25 | BugReports: https://github.com/mlr-org/mlrMBO/issues |
@@ -52,13 +53,13 @@ Suggests: |
52 | 53 | party, |
53 | 54 | randomForest, |
54 | 55 | rmarkdown, |
| 56 | + rgenoud, |
55 | 57 | rpart, |
56 | 58 | testthat, |
57 | | - eaf, |
58 | 59 | covr |
59 | 60 | LazyData: yes |
60 | 61 | Encoding: UTF-8 |
61 | 62 | ByteCompile: yes |
62 | | -Version: 1.1.2 |
| 63 | +Version: 1.1.3 |
63 | 64 | RoxygenNote: 6.0.1 |
64 | 65 | VignetteBuilder: knitr |
0 commit comments