From a6ac64aa60aa071bb6d5eb9ab5a861aae33e3267 Mon Sep 17 00:00:00 2001 From: damirpolat Date: Sat, 23 Dec 2023 18:52:21 -0700 Subject: [PATCH] docs: update --- R/LearnerClustAffinityPropagation.R | 2 -- man/mlr_learners_clust.ap.Rd | 4 +--- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/R/LearnerClustAffinityPropagation.R b/R/LearnerClustAffinityPropagation.R index d9fe5ebe..b55bd623 100644 --- a/R/LearnerClustAffinityPropagation.R +++ b/R/LearnerClustAffinityPropagation.R @@ -7,8 +7,6 @@ #' @description #' A [LearnerClust] for Affinity Propagation clustering implemented in [apcluster::apcluster()]. #' [apcluster::apcluster()] doesn't have set a default for similarity function. -#' Therefore, the `s` parameter here is set to `apcluster::negDistMat(r = 2L)` by default -#' since this is what is used in the original paper on Affity Propagation clustering. #' The predict method computes the closest cluster exemplar to find the #' cluster memberships for new data. #' The code is taken from diff --git a/man/mlr_learners_clust.ap.Rd b/man/mlr_learners_clust.ap.Rd index ab937016..426e1502 100644 --- a/man/mlr_learners_clust.ap.Rd +++ b/man/mlr_learners_clust.ap.Rd @@ -7,8 +7,6 @@ \description{ A \link{LearnerClust} for Affinity Propagation clustering implemented in \code{\link[apcluster:apcluster-methods]{apcluster::apcluster()}}. \code{\link[apcluster:apcluster-methods]{apcluster::apcluster()}} doesn't have set a default for similarity function. -Therefore, the \code{s} parameter here is set to \code{apcluster::negDistMat(r = 2L)} by default -since this is what is used in the original paper on Affity Propagation clustering. The predict method computes the closest cluster exemplar to find the cluster memberships for new data. The code is taken from @@ -37,7 +35,7 @@ lrn("clust.ap") \section{Parameters}{ \tabular{lllll}{ Id \tab Type \tab Default \tab Levels \tab Range \cr - s \tab untyped \tab apcluster::negDistMat, 2 \tab \tab - \cr + s \tab untyped \tab - \tab \tab - \cr p \tab untyped \tab NA \tab \tab - \cr q \tab numeric \tab - \tab \tab \eqn{[0, 1]}{[0, 1]} \cr maxits \tab integer \tab 1000 \tab \tab \eqn{[1, \infty)}{[1, Inf)} \cr