Skip to content

Commit 0fd1c73

Browse files
committed
praznik_mrmr: Support for regr and surv tasks
1 parent b58c03c commit 0fd1c73

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

NEWS.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,19 @@
1313
(@jakob-r, #1784)
1414
- `e1071::svm()` now only uses the formula interface if factors are present. This change is supposed to prevent from "stack overflow" issues some users encountered when using large datasets. See #1738 for more information. (@mb706, #1740)
1515

16-
## functions - general
17-
- `getClassWeightParam()` now also works for Wrapper* Models and ensemble models (@ja-thomas, #891)
18-
- added `getLearnerNote()` to query the "Note" slot of a learner (@alona-sydorova, #2086)
19-
2016
## learners - new
2117
- add learner `cluster.MiniBatchKmeans` from package _ClusterR_ (@Prasiddhi, #2554)
2218

2319
## function - general
2420
- `plotHyperParsEffect()` now supports facet visualization of hyperparam effects for nested cv (@MasonGallo, #1653)
2521
- fixed a bug that caused an incorrect aggregation of probabilities in some cases. The bug existed since quite some time and was exposed due to the change of `data.table`s default in `rbindlist()`. See #2578 for more information. (@mllg, #2579)
2622
- fixed a bug in which `options(on.learner.error)` was not respected in `benchmark()`. This caused `benchmark()` to stop even if it should have continued including `FailureModels` in the result (@dagola, #1984)
23+
- `getClassWeightParam()` now also works for Wrapper* Models and ensemble models (@ja-thomas, #891)
24+
- added `getLearnerNote()` to query the "Note" slot of a learner (@alona-sydorova, #2086)
25+
26+
## filters - general
27+
28+
- Filter `praznik_mrmr` also supports `regr` and `surv` tasks
2729

2830
# mlr 2.14.0
2931

R/Filter.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1003,7 +1003,7 @@ makeFilter(
10031003
name = "praznik_MRMR",
10041004
desc = "Minimum redundancy maximal relevancy filter",
10051005
pkg = "praznik",
1006-
supported.tasks = "classif",
1006+
supported.tasks = c("classif", "regr", "surv"),
10071007
supported.features = c("numerics", "factors", "integer", "character", "logical"),
10081008
fun = praznik_filter("MRMR")
10091009
)

0 commit comments

Comments
 (0)