MiniBatchKMeans
MiniBatchKMeansA model type for constructing a Mini-Batch K-Means clustering., based on MLJScikitLearnInterface.jl, and implementing the MLJ model interface.
From MLJ, the type can be imported using
MiniBatchKMeans = @load MiniBatchKMeans pkg=MLJScikitLearnInterfaceDo model = MiniBatchKMeans() to construct an instance with default hyper-parameters. Provide keyword arguments to override hyper-parameter defaults, as in MiniBatchKMeans(n_clusters=...).
Hyper-parameters
n_clusters = 8max_iter = 100batch_size = 100verbose = 0compute_labels = truerandom_state = nothingtol = 0.0max_no_improvement = 10init_size = nothingn_init = 3init = k-means++reassignment_ratio = 0.01