Releases: mlr-org/mlr3learners
Releases · mlr-org/mlr3learners
mlr3learners 0.9.0
- BREAKING CHANGE: Remove
$loglik()
method from all learners. - feat: Update hyperparameter set of
lrn("classif.ranger")
andlrn("regr.ranger")
for 0.17.0, addingna.action
parameter and"missings"
property, andpoisson
splitrule for regression with a newpoisson.tau
parameter. - compatibility: mlr3 0.22.0.
mlr3learners 0.8.0
- fix: Hyperparameter set of
lrn("classif.ranger")
andlrn("regr.ranger")
.
Removealpha
andminprop
hyperparameter.
Remove default ofrespect.unordered.factors
.
Change lower bound ofmax_depth
from 0 to 1.
Removese.method
fromlrn("classif.ranger")
. - feat: use
base_margin
in xgboost learners (#205). - fix: validation for learner
lrn("regr.xgboost")
now works properly. Previously the training data was used. - feat: add weights for logistic regression again, which were incorrectly removed in a previous release (#265).
- BREAKING CHANGE: When using internal tuning for xgboost learners, the
eval_metric
must now be set.
This achieves that one needs to make the conscious decision which performance metric to use for early stopping. - BREAKING CHANGE: Change xgboost default nrounds from 1 to 1000.
mlr3learners 0.7.0
- feat:
LearnerClassifXgboost
andLearnerRegrXgboost
now support internal tuning and validation.
This now also works in conjunction withmlr3pipelines
.
mlr3learners 0.6.0
- Adaption to new paradox version 1.0.0.
mlr3learners 0.5.8
- Adaption to memory optimization in mlr3 0.17.1.
mlr3learners 0.5.7
- Added labels to learners.
- Added formula argument to
nnet
learner and support feature type"integer"
- Added
min.bucket
parameter toclassif.ranger
andregr.ranger
.
mlr3learners 0.5.6
- Enable new early stopping mechanism for xgboost.
- Improved documentation.
- fix: unloading
mlr3learners
removes learners from dictionary.
mlr3learners 0.5.4
- Added
regr.nnet
learner. - Removed the option to use weights in
classif.log_reg
. - Added
default_values()
function for ranger and svm learners. - Improved documentation.
mlr3learners 0.5.2
- Most learners now reorder the columns in the predict task according to the
order of columns in the training task. - Removed workaround for old mlr3 versions.
mlr3learners 0.5.1
eval_metric()
is now explicitly set for xgboost learners to silence a
deprecation warning.- Improved how the added hyperparameter
mtry.ratio
is converted tomtry
to
simplify tuning. - Multiple updates to hyperparameter sets.