From f90f48d1f311810b6e42bbcddbf50bbfd875f17b Mon Sep 17 00:00:00 2001 From: mb706 Date: Wed, 28 Feb 2024 11:35:27 +0100 Subject: [PATCH] removing diffs ii --- R/LearnerClustAffinityPropagation.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/LearnerClustAffinityPropagation.R b/R/LearnerClustAffinityPropagation.R index f92b3594..fd817131 100644 --- a/R/LearnerClustAffinityPropagation.R +++ b/R/LearnerClustAffinityPropagation.R @@ -27,7 +27,7 @@ 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(0L, 1L, tags = "train"), + q = p_dbl(0, 1, 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"),