About Lesson
This is a variant of the K-means clustering algorithm that performs updates on randomly selected subsets (mini-batches) of the data instead of the entire dataset. It is particularly useful when dealing with large datasets where the entire dataset cannot fit into memory. Scikit-learn provides the MiniBatchKMeans
class for mini-batch K-means clustering.
Join the conversation