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
error_config("Parameter 'validate' is set to 'predefined' but no internal validation task is present. This commonly happens in GraphLearners and can be avoided by configuring the validation data for the GraphLearner via `set_validate(glrn, validate = values)`. See https://mlr3book.mlr-org.com/chapters/chapter15/predsets_valid_inttune.html for more information.")
558
558
}
559
559
if (!identical(task$target_names, task$internal_valid_task$target_names)) {
560
-
error_input("Internal validation task '%s' has different target names than primary task '%s', did you modify the task after creating the internal validation task?",
561
-
task$internal_valid_task$id, task$id)# TODO error_config?
560
+
error_config("Internal validation task '%s' has different target names than primary task '%s', did you modify the task after creating the internal validation task?",
561
+
task$internal_valid_task$id, task$id)
562
562
}
563
563
if (!test_permutation(task$feature_names, task$internal_valid_task$feature_names)) {
564
-
error_input("Internal validation task '%s' has different features than primary task '%s', did you modify the task after creating the internal validation task?",
565
-
task$internal_valid_task$id, task$id)# TODO error_config?
564
+
error_config("Internal validation task '%s' has different features than primary task '%s', did you modify the task after creating the internal validation task?",
0 commit comments