-
-
Notifications
You must be signed in to change notification settings - Fork 59
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
error in breast_cancer #848
Comments
Sorry I was a little bit fast. Where does this happen? |
library(mlr3verse)
tasks = tsks(c("breast_cancer", "sonar"))
glrn_rf_tuned = as_learner(ppl("robustify") %>>% auto_tuner(
tnr("grid_search", resolution = 5),
lrn("classif.ranger", num.trees = to_tune(200, 500)),
rsmp("holdout")
))
glrn_rf_tuned$id = "RF"
glrn_stack = as_learner(ppl("robustify") %>>% ppl("stacking",
lrns(c("classif.rpart", "classif.kknn")),
lrn("classif.log_reg")
))
glrn_stack$id = "Stack"
learners = c(glrn_rf_tuned, glrn_stack)
bmr = benchmark(benchmark_grid(tasks, learners, rsmp("cv", folds = 3)))
bmr$aggregate(msr("classif.acc")) |
error "%>>%" function R version 4.4.2 (2024-10-31 ucrt) [1] crayon_1.5.3 cli_3.6.3 knitr_1.49 rlang_1.1.4 |
Uyarı: glm.fit: algorithm did not converge
This happened PipeOp classif.log_reg's $train()Uyarı: glm.fit: fitted probabilities numerically 0 or 1 occurred
This happened PipeOp classif.log_reg's $train()Uyarı: glm.fit: algorithm did not converge
This happened PipeOp classif.log_reg's $train()Uyarı: glm.fit: fitted probabilities numerically 0 or 1 occurred
This happened PipeOp classif.log_reg's $train()Hata: Task 'breast_cancer' has missing values in column(s) 'bare_nuclei.1', 'bare_nuclei.2', 'bare_nuclei.3', 'bare_nuclei.4', 'bare_nuclei.5', 'bare_nuclei.7', 'bare_nuclei.8', 'bare_nuclei.9', 'bare_nuclei.10', but learner 'classif.kknn' does not support this
This happened PipeOp classif.kknn.classif.kknn's $predict()
The text was updated successfully, but these errors were encountered: