Nothing
#' @title von Mises-Fisher Mixture Clustering Learner
#'
#' @name mlr_learners_clust.movMF
#'
#' @description
#' Fits a mixture of von Mises-Fisher distributions via EM, the directional-data analogue of a Gaussian mixture for
#' points on the unit hypersphere.
#' Calls [movMF::movMF()] from package \CRANpkg{movMF}.
#'
#' The `k` parameter is set to 2 by default since [movMF::movMF()] has no default value for the number of mixture
#' components. Rows of `x` are standardised to unit length internally by [movMF::movMF()]. Predictions use the
#' `predict()` method from \pkg{movMF}; `prob` returns the soft memberships.
#'
#' @templateVar id clust.movMF
#' @template learner
#'
#' @references
#' `r format_bib("banerjee2005clustering", "hornik2014movmf")`
#'
#' @export
#' @template seealso_learner
#' @template example
LearnerClustMovMF = R6Class(
"LearnerClustMovMF",
inherit = LearnerClust,
public = list(
#' @description
#' Creates a new instance of this [R6][R6::R6Class] class.
initialize = function() {
param_set = ps(
k = p_int(1L, tags = c("train", "required")),
E = p_fct(c("softmax", "hardmax", "stochmax"), default = "softmax", tags = "train"),
kappa = p_uty(tags = "train"),
start = p_uty(default = "p", tags = "train"),
nruns = p_int(1L, default = 1L, tags = c("train", "control")),
maxiter = p_int(1L, default = 100L, tags = c("train", "control")),
reltol = p_dbl(0, tags = c("train", "control")),
minalpha = p_dbl(0, default = 0, tags = c("train", "control")),
converge = p_lgl(default = TRUE, tags = c("train", "control")),
verbose = p_lgl(default = FALSE, tags = c("train", "control"))
)
param_set$set_values(k = 2L)
super$initialize(
id = "clust.movMF",
feature_types = c("logical", "integer", "numeric"),
predict_types = c("partition", "prob"),
param_set = param_set,
properties = c("partitional", "fuzzy", "complete"),
packages = "movMF",
man = "mlr3cluster::mlr_learners_clust.movMF",
label = "von Mises-Fisher Mixture"
)
}
),
private = list(
.train = function(task) {
ps = self$param_set
pv = ps$get_values(tags = "train")
pv$control = ps$get_values(tags = "control")
pv = remove_named(pv, names(pv$control))
m = invoke(movMF::movMF, x = as.matrix(task$data()), .args = pv)
if (self$save_assignments) {
self$assignments = max.col(m$P)
}
m
},
.predict = function(task) {
newdata = as.matrix(task$data())
partition = as.integer(invoke(predict, self$model, newdata = newdata, type = "class_ids"))
prob = NULL
if (self$predict_type == "prob") {
prob = invoke(predict, self$model, newdata = newdata, type = "memberships")
colnames(prob) = seq_col(prob)
}
PredictionClust$new(task = task, partition = partition, prob = prob)
}
)
)
#' @include zzz.R
register_learner("clust.movMF", LearnerClustMovMF)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.