Marc Becker
Marc Becker
Application of mlr3keras from a user perspective. Work in progress. - [ ] `README.md` - Links to learners do not work. - [ ] `README.md` - `reticulate::conda_create()` is called with...
| Package | CRAN | |-------------------|------| | bbotk | x | | mlr3 | x | | mlr3learners | x | | mlr3filters | x | | mlr3tuning | x...
When a graph learner is deep cloned, the dependencies in the parameter set disappear in the original and cloned learner. ```r library("mlr3") library("mlr3pipelines") library("paradox") graph_learner = GraphLearner$new( lrn("classif.rpart")) graph_learner$param_set$add_dep("classif.rpart.cp", "classif.rpart.keep_model",...
* required and dependency check can be activated in `ParamSet$check(check_strict = TRUE)`. Default is `FALSE` * `get_values(remove_dependencies = TRUE)` (better name?) removes all parameter values with unsatisfied dependencies. Default is...
Hey, the upcoming bbotk version 0.9.0 changes the names of some classes (see https://github.com/mlr-org/bbotk/blob/main/NEWS.md). I only found `OptimInstanceMultiCrit` in the counterfactuals code https://github.com/dandls/counterfactuals/blob/287a264221f0ae0784bc460346ca0ea37c2747fb/R/moc_algo.R#L52 which is `OptimInstanceBatchMultiCrit` now. Unfortunately, I couldn't...