|
1 | 1 | # mlr3filters (development version)
|
2 | 2 |
|
| 3 | +* compatibility: mlr3 0.22.0 |
| 4 | + |
3 | 5 | # mlr3filters 0.8.0
|
4 | 6 |
|
5 |
| -- Added `FilterBoruta` |
6 |
| -- Fixed issue with `FilterPerformance` where the arg `measure` wasn't passed on |
7 |
| -- Added `FilterUnivariateCox` (thanks to @bblodfon) |
8 |
| -- Parameter value `na.rm` is properly initialized to `TRUE` (thanks to @bblodfon) |
9 |
| -- Bugfix: property `missings` is now set correctly for `FilterFindCorrelation` |
10 |
| -- Bugfix: `$hash` now works for `Filter`s |
| 7 | +* Added `FilterBoruta` |
| 8 | +* Fixed issue with `FilterPerformance` where the arg `measure` wasn't passed on |
| 9 | +* Added `FilterUnivariateCox` (thanks to @bblodfon) |
| 10 | +* Parameter value `na.rm` is properly initialized to `TRUE` (thanks to @bblodfon) |
| 11 | +* Bugfix: property `missings` is now set correctly for `FilterFindCorrelation` |
| 12 | +* Bugfix: `$hash` now works for `Filter`s |
11 | 13 |
|
12 | 14 | # mlr3filters 0.7.1
|
13 | 15 |
|
14 |
| -- Tagged multiple filters to be able of gracefully handling missing values. |
15 |
| -- Added more supported feature types to FilterCarScore. |
16 |
| -- Improved documentation. |
| 16 | +* Tagged multiple filters to be able of gracefully handling missing values. |
| 17 | +* Added more supported feature types to FilterCarScore. |
| 18 | +* Improved documentation. |
17 | 19 |
|
18 | 20 | # mlr3filters 0.7.0
|
19 | 21 |
|
20 |
| -- Features are now checked for missing values to improve error messages (#140) |
21 |
| -- Removed deprecated functions |
22 |
| -- Use featureless learner in defaults (#124) |
23 |
| -- Field `task_type` of class `Filter` has been renamed to `task_types`. |
| 22 | +* Features are now checked for missing values to improve error messages (#140) |
| 23 | +* Removed deprecated functions |
| 24 | +* Use featureless learner in defaults (#124) |
| 25 | +* Field `task_type` of class `Filter` has been renamed to `task_types`. |
24 | 26 |
|
25 | 27 | # mlr3filters 0.6.0
|
26 | 28 |
|
27 |
| -- Add `FilterCarSurvScore` (#120, @mllg) |
28 |
| -- Use featureless learner instead of rpart as default learner for `FilterImportance` and `FilterPerformance` (#124) |
29 |
| -- Add documentation for PipeOpFilter |
30 |
| -- Add mlr3pipelines examples to help pages (#135, @sebffischer) |
31 |
| -- Add `label` arg to `Filter` class (#121, @mllg) |
| 29 | +* Add `FilterCarSurvScore` (#120, @mllg) |
| 30 | +* Use featureless learner instead of rpart as default learner for `FilterImportance` and `FilterPerformance` (#124) |
| 31 | +* Add documentation for PipeOpFilter |
| 32 | +* Add mlr3pipelines examples to help pages (#135, @sebffischer) |
| 33 | +* Add `label` arg to `Filter` class (#121, @mllg) |
32 | 34 |
|
33 | 35 | # mlr3filters 0.5.0
|
34 | 36 |
|
35 |
| -- Add references to benchmark paper and praznik paper (#104) |
36 |
| -- New filter `FilterSelectedFeatures` which makes use of embedded feature selection methods of learners. |
| 37 | +* Add references to benchmark paper and praznik paper (#104) |
| 38 | +* New filter `FilterSelectedFeatures` which makes use of embedded feature selection methods of learners. |
37 | 39 | See the help page for more details (#102)
|
38 |
| -- Allow `NA` as task type. |
| 40 | +* Allow `NA` as task type. |
39 | 41 | This makes it possible to use other tasks than `"regr"` or `"classif"` for certain filters, e.g. `FilterVariance` (#106)
|
40 | 42 |
|
41 | 43 |
|
42 | 44 | # mlr3filters 0.4.2
|
43 | 45 |
|
44 |
| -- Fixes an issue where argument `nfeat` was not passed down to {praznik} filters (#97) |
| 46 | +* Fixes an issue where argument `nfeat` was not passed down to {praznik} filters (#97) |
45 | 47 |
|
46 | 48 |
|
47 | 49 | # mlr3filters 0.4.1
|
48 | 50 |
|
49 |
| -- Disable threading in praznik filters by default (5f24742e9b92f6a5f828c4f755be3fb53427afdb, @mllg) |
| 51 | +* Disable threading in praznik filters by default (5f24742e9b92f6a5f828c4f755be3fb53427afdb, @mllg) |
50 | 52 | Enable by setting hyperparameter `threads` >= 2 or to `0` for auto-detection of available cores (#93, @mllg)
|
51 |
| -- Document return type of private `.calculate()` (#92, @mllg) |
52 |
| -- Allow `NA` in returned vectors. |
| 53 | +* Document return type of private `.calculate()` (#92, @mllg) |
| 54 | +* Allow `NA` in returned vectors. |
53 | 55 | Features with missing values as well as features with no calculated score are automatically ranked last, in a random order. (#92, @mllg)
|
54 |
| -- praznik filters now also support `regr` Tasks (#90, @bommert) |
| 56 | +* praznik filters now also support `regr` Tasks (#90, @bommert) |
55 | 57 |
|
56 | 58 |
|
57 | 59 | # mlr3filters 0.4.0
|
58 | 60 |
|
59 |
| -- Add ReliefF filter (#86) |
60 |
| -- Fix praznik scores calculation: praznik filters are not monotone in the selected features due to their iterative fashion. E.g., the first selected feature can have a score of 5, the second selected feature a score of 10. This version replaces the praznik scores by a simple sequence (#87, @mllg) |
| 61 | +* Add ReliefF filter (#86) |
| 62 | +* Fix praznik scores calculation: praznik filters are not monotone in the selected features due to their iterative fashion. E.g., the first selected feature can have a score of 5, the second selected feature a score of 10. This version replaces the praznik scores by a simple sequence (#87, @mllg) |
61 | 63 |
|
62 | 64 |
|
63 | 65 | # mlr3filters 0.3.0
|
64 | 66 |
|
65 |
| -- Add Permutation (#70) |
66 |
| -- Add `flts()` (#77) |
67 |
| -- Github Actions: set cron job to 4am to avoid potential download issues with R-devel on macOS |
68 |
| -- Filters now have a help method `$help()` which opens the respective help page (#68) |
| 67 | +* Add Permutation (#70) |
| 68 | +* Add `flts()` (#77) |
| 69 | +* Github Actions: set cron job to 4am to avoid potential download issues with R-devel on macOS |
| 70 | +* Filters now have a help method `$help()` which opens the respective help page (#68) |
69 | 71 |
|
70 | 72 |
|
71 | 73 | # mlr3filters 0.2.0
|
|
0 commit comments