A LearnerClust for fuzzy clustering implemented in e1071::cmeans().
e1071::cmeans() doesn't have a default value for the number of clusters.
Therefore, the centers parameter here is set to 2 by default.
The predict method uses clue::cl_predict() to compute the
cluster memberships for new data.
This Learner can be instantiated via the dictionary mlr_learners or with the associated sugar function lrn():
mlr_learners$get("clust.cmeans") lrn("clust.cmeans")
mlr3::Learner -> mlr3cluster::LearnerClust -> LearnerClustCMeans
new()Creates a new instance of this R6 class.
LearnerClustCMeans$new()
clone()The objects of this class are cloneable with this method.
LearnerClustCMeans$clone(deep = FALSE)
deepWhether to make a deep clone.
#> <LearnerClustCMeans:clust.cmeans> #> * Model: - #> * Parameters: centers=2 #> * Packages: e1071 #> * Predict Type: partition #> * Feature types: logical, integer, numeric #> * Properties: complete, fuzzy, partitional# available parameters: learner$param_set$ids()#> [1] "centers" "iter.max" "verbose" "dist" "method" "m" "rate.par" #> [8] "weights" "control"