Skip to content

Commit

Permalink
disambiguate labels in solutions
Browse files Browse the repository at this point in the history
  • Loading branch information
larskotthoff committed Dec 4, 2024
1 parent 6aca217 commit 476057c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions book/chapters/appendices/solutions.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -1025,14 +1025,14 @@ set.seed(1)
afs_sfs = auto_fselector(
fselector = fs("sequential", strategy = "sfs"),
learner = lrn("classif.rpart"),
learner = lrn("classif.rpart", id = "classif.rpart.sfs"),
resampling = rsmp("holdout"),
measure = msr("classif.acc")
)
afs_sbs = auto_fselector(
fselector = fs("sequential", strategy = "sbs"),
learner = lrn("classif.rpart"),
learner = lrn("classif.rpart", id = "classif.rpart.sbs"),
resampling = rsmp("holdout"),
measure = msr("classif.acc")
)
Expand Down

0 comments on commit 476057c

Please sign in to comment.