
Version 2.16
mlr 2.16.0
CRAN release: 2019-11-26
package infrastructure
- There is now a reference grouping for all functions on the pkgdown site (https://mlr.mlr-org.com/reference/index.html)
- CI testing now only on Circle CI (previously Travis CI)
learners - general
- fixed a bug in
classif.xgboostwhich prevented passing a watchlist for binary tasks. This was caused by a suboptimal internal label inversion approach. Thanks to @001ben for reporting (#32) (@mllg) - update
fda.usclearners to work with package version >=2.0 - update
glmnetlearners to upstream package version 3.0.0 - update
xgboostlearners to upstream version 0.90.2 (@pat-s & @be-marc, #2681) - Updated ParamSet for learners
classif.gbmandregr.gbm. Specifically, paramshrinkagenow defaults to 0.1 instead of 0.001. Also more choices for paramdistributionhave been added. Internal parallelization by the package is now suppressed (paramn.cores). (@pat-s, #2651) - Update parameters for
h2o.deeplearninglearners (@albersonmiranda, #2668)
misc
- Add
configureMlr()to.onLoad(), possibly fixing some edge cases (#2585) (@pat-s, #2637)
learners - bugfixes
-
h2o.gbmlearners were not running untilwcolwas passed somehow due to an internal bug. In addition, this bug caused another issue during prediction where the predictiondata.framewas somehow formatted as a character rather a numeric. Thanks to @nagdevAmruthnath for bringing this up in #2630.
filters - general
Bugfix: Allow
method = "vh"for filterrandomForestSRC_var.selectand return informative error message for not supported values. Also argumentconservativecan now be passed. See #2646 and #2639 for more information (@pat-s, #2649)Bugfix: Allow
method = "md"of filterrandomForestSRC_var.selectto set the value returned for features below its threshold to NA (Issue #2687)Bugfix: With the new praznik v7.0.0 release filter
praznik_CMIMdoes no longer return a result for logical features. See https://gitlab.com/mbq/praznik/issues/19 for more information