Skip to content

Commit

Permalink
feat: add verbose param to hdbscan learner (#60)
Browse files Browse the repository at this point in the history
  • Loading branch information
m-muecke authored Mar 17, 2024
1 parent eedf186 commit 136ae95
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion R/LearnerClustHDBSCAN.R
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ LearnerClustHDBSCAN = R6Class("LearnerClustHDBSCAN",
param_set = ps(
minPts = p_int(0L, tags = c("required", "train")),
gen_hdbscan_tree = p_lgl(default = FALSE, tags = "train"),
gen_simplified_tree = p_lgl(default = FALSE, tags = "train")
gen_simplified_tree = p_lgl(default = FALSE, tags = "train"),
verbose = p_lgl(default = FALSE, tags = "train")
)

super$initialize(
Expand Down
1 change: 1 addition & 0 deletions man/mlr_learners_clust.hdbscan.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 136ae95

Please sign in to comment.