Releases: mlr-org/mlr3
Releases ยท mlr-org/mlr3
mlr3 0.20.2
- refactor: move RhpcBLASctl to suggest.
mlr3 0.20.1
- feat: Add multiclass Matthews correlation coefficient
msr("classif.mcc").
mlr3 0.20.0
- Added support for learner-internal validation and tuning.
mlr3 0.19.0
- Added support for
"marshal"property, which allows learners to process models so they can be serialized.
This happens automatically duringresample()andbenchmark(). - Encapsulation methods use the same RNG state now.
- Fix missing values in
default_values.Learner()function. - Encapsulated error messages are now printed with the
lgrpackage.
mlr3 0.18.0
- Prepare compatibility with new paradox version.
- feat: dictionary conversion of
mlr_learnersrespects prototype arguments
recently added in mlr3misc - perf: skip unnecessary clone of learner's state in
resample()
mlr3 0.17.2
- Skip new
data.tabletests on mac.
mlr3 0.17.1
- Remove
data_prototypewhen resampling fromlearner$stateto reduce memory consumption. - Reduce number of threads used by
data.tableand BLAS to 1 when runningresample()orbenchmark()in parallel. - Optimize runtime of
resample()andbenchmark()by reducing the number of hashing operations.
mlr3 0.17.0
- Learners cannot be added to the
HotstartStackanymore when the model is missing. - Learners bellow the
hotstart_thresholdare not added to theHotstartStackanymore. - The
learner$state$train_timein hotstarted learners is now only the time of the last training. - Added debug messages to the hotstart stack.
- Fixed bug where the
HotstartStackdid not work with column roles set in the task. - The
designofbenchmark()can now include parameter settings. - Speed up resampling by removing unnecessary calls to
packageVersion(). - Fix boston housing data set.
- Export generic function
col_infoto allow adding new methods for backends. - Task printer includes row roles now.
- Add
"mlr3.exec_chunk_bins"option to split the resampling iterations into a number of bins.
mlr3 0.16.1
- Function
data.table()is now re-exported. - Fixed a test which randomly failed.
- Improved documentation.
- Add encapsulation mode
"try", which works similar to"none"but captures errors
mlr3 0.16.0
- Added argument
pairedtobenchmark_grid()function, which can be used to create a benchmark design, where
resamplings have been instantiated on tasks. - Added S3 method for
ResultDataforas_resample_result()converter. - Added S3 method for
listforas_resample_result()converter. - The featureless classification learner now returns proper probabilities
(#918).