File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
# mlr3fselect (development version)
2
2
3
- compatibility: mlr3 0.22.0
3
+ * compatibility: mlr3 0.22.0
4
+ * feat: Add internal tuning callback ` mlr3fselect.internal_tuning ` .
4
5
5
6
# mlr3fselect 1.2.0
6
7
7
- * feat: Add internal tuning callback ` mlr3fselect.internal_tuning ` .
8
8
* fix: Register mlr3fselect in the ` mlr_reflections$loaded_packages ` field.
9
9
10
10
# mlr3fselect 1.1.1
Original file line number Diff line number Diff line change @@ -153,7 +153,7 @@ load_callback_one_se_rule = function() {
153
153
label = " One Standard Error Rule Callback" ,
154
154
man = " mlr3fselect::mlr3fselect.one_se_rule" ,
155
155
156
- on_result = function (callback , context ) {
156
+ on_optimization_end = function (callback , context ) {
157
157
archive = context $ instance $ archive
158
158
data = as.data.table(archive )
159
159
data [, " n_features" : = map(get(" features" ), length )]
@@ -203,7 +203,7 @@ load_callback_internal_tuning = function() {
203
203
callback $ state $ internal_search_space $ aggr_internal_tuned_values(internal_tuned_values )
204
204
})
205
205
206
- data.table :: set(context $ aggregated_performance , j = " internal_tuned_values" , value = list (internal_tuned_values ))
206
+ data.table :: set(context $ aggregated_performance , j = " internal_tuned_values" , value = list (internal_tuned_values ))
207
207
},
208
208
209
209
on_optimization_end = function (callback , context ) {
You can’t perform that action at this time.
0 commit comments