Skip to content

Commit

Permalink
removing diffs
Browse files Browse the repository at this point in the history
  • Loading branch information
mb706 committed Feb 28, 2024
1 parent 03938b0 commit 17a2752
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions R/LearnerClustAffinityPropagation.R
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ LearnerClustAP = R6Class("LearnerClustAP",
param_set = ps(
s = p_uty(tags = c("required", "train")),
p = p_uty(default = NA, tags = "train", custom_check = crate(function(x) check_numeric(x))),
q = p_dbl(lower = 0L, upper = 1L, tags = "train"),
maxits = p_int(lower = 1L, default = 1000L, tags = "train"),
convits = p_int(lower = 1L, default = 100L, tags = "train"),
lam = p_dbl(lower = 0.5, upper = 1L, default = 0.9, tags = "train"),
q = p_dbl(0L, 1L, tags = "train"),
maxits = p_int(1L, default = 1000L, tags = "train"),
convits = p_int(1L, default = 100L, tags = "train"),
lam = p_dbl(0.5, 1, default = 0.9, tags = "train"),
includeSim = p_lgl(default = FALSE, tags = "train"),
details = p_lgl(default = FALSE, tags = "train"),
nonoise = p_lgl(default = FALSE, tags = "train"),
Expand Down

0 comments on commit 17a2752

Please sign in to comment.