forked from mlr-org/bbotk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDESCRIPTION
95 lines (95 loc) · 2.58 KB
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
Package: bbotk
Title: Black-Box Optimization Toolkit
Version: 0.2.2
Authors@R:
c(person(given = "Marc",
family = "Becker",
role = c("cre", "aut"),
email = "[email protected]",
comment = c(ORCID = "0000-0002-8115-0400")),
person(given = "Jakob",
family = "Richter",
role = "aut",
email = "[email protected]",
comment = c(ORCID = "0000-0003-4481-5554")),
person(given = "Michel",
family = "Lang",
role = "aut",
email = "[email protected]",
comment = c(ORCID = "0000-0001-9754-0393")),
person(given = "Bernd",
family = "Bischl",
role = "aut",
email = "[email protected]",
comment = c(ORCID = "0000-0001-6002-6980")),
person(given = "Martin",
family = "Binder",
role = "aut",
email = "[email protected]"),
person(given = "Olaf",
family = "Mersmann",
role = "ctb",
email = "[email protected]"))
Description: Provides a common framework for optimization of
black-box functions for other packages, e.g. 'mlr3tuning' or 'mlr3fselect'.
It offers various optimization methods e.g. grid search, random search and
generalized simulated annealing.
License: LGPL-3
URL: https://bbotk.mlr-org.com, https://github.com/mlr-org/bbotk
BugReports: https://github.com/mlr-org/bbotk/issues
Depends:
R (>= 3.1.0)
Imports:
checkmate (>= 2.0.0),
data.table,
lgr,
methods,
mlr3misc (>= 0.5.0),
paradox (>= 0.3),
R6
Suggests:
adagio,
GenSA,
knitr,
nloptr,
rmarkdown,
testthat
VignetteBuilder:
knitr
Encoding: UTF-8
Language: en-US
NeedsCompilation: no
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.1.1
Collate:
'Archive.R'
'Objective.R'
'ObjectiveRFun.R'
'ObjectiveRFunDt.R'
'OptimInstance.R'
'OptimInstanceMultiCrit.R'
'OptimInstanceSingleCrit.R'
'mlr_optimizers.R'
'Optimizer.R'
'OptimizerCmaes.R'
'OptimizerDesignPoints.R'
'OptimizerGenSA.R'
'OptimizerGridSearch.R'
'OptimizerNLoptr.R'
'OptimizerRandomSearch.R'
'mlr_terminators.R'
'Terminator.R'
'TerminatorClockTime.R'
'TerminatorCombo.R'
'TerminatorEvals.R'
'TerminatorNone.R'
'TerminatorPerfReached.R'
'TerminatorRunTime.R'
'TerminatorStagnation.R'
'TerminatorStagnationBatch.R'
'assertions.R'
'bbotk_reflections.R'
'bibentries.R'
'helper.R'
'sugar.R'
'zzz.R'