You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
refactor: name variables after what they mean (#197)
* `FSelectorBatchSequential`: `x`/`y`/`z` communicated nothing and the
inner `if` re-tested the condition `z` already filtered on. The scalar
`ifelse()` calls are replaced by a single `add_feature` flag.
* `AutoFSelector`: the two near-identical row id checks are folded into
one loop that uses `$train_set()` / `$test_set()`.
* `AutoFSelector`: `stopf("Learner ''%s' cannot calculate important
scores.")` had a doubled quote and said "important" instead of
"importance".
* `mlr_callbacks`: `load_callback_one_se_rule()` assigned to a variable
that is never read, unlike its four sibling loaders.
* The `({ ... })` wrapper around the `repeat` body has no effect.
Copy file name to clipboardExpand all lines: NEWS.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,7 @@
1
1
# mlr3fselect (development version)
2
2
3
3
* fix: `ArchiveAsyncFSelect` pushed results with the removed `rush::Rush$push_results()` method.
4
+
* fix: `AutoFSelector$train()` did not check the row ids of an instantiated inner resampling for cross-validation and reported a wrong set number for holdout (#197).
4
5
* fix: The `mlr3fselect.svm_rfe` callback accepted support vector machines without a `type` or `kernel` setting, although only `type = "C-classification"` and `kernel = "linear"` are supported. The callback now also errors on multi-class tasks for which the importance scores are not defined (#173).
5
6
* fix: The asynchronous feature selection ignored the `always_included` column role. Columns with this role were excluded from the models instead of being added to every feature subset (#175).
6
7
* fix: The `mlr3fselect.one_se_rule` callback errored on archives with a single evaluation or with missing scores, and wrote the `n_features` column as a list column instead of an integer column (#174).
0 commit comments