orthoKMeansTrainCpp: K-Means using yakmo library
Description
K-Means using yakmo library
Usage
orthoKMeansTrainCpp(x, rounds = 1L, k = 3L, iter = 100L, initType = 0L, verbose = FALSE)
Arguments
rounds
number of rounds (orthogonal views)
iter
numer of iterations in one round
initType
centroid initialization via Random or KMeans++
Value
a list consisting of
centers these are the resulting centroids of the kmean algorithm (as a std::vector of NumericMatrix)
cluster these are the labels for the resulting clustering (as a std::vector of NumericVector)
obj this is a vector with the final objective value for each round