Course:CPSC312-2023-Kmeans++

From UBC Wiki

Authors:Ali,

Contents

What is the problem?[edit | wikitext]

K-means can be used as a vector quantization to segment images into meaningful components. However it doesn't guarantee convergence due to its dependence on initial conditions of the segmentations.

What is the something extra?[edit | wikitext]

Use Haskell to implement K-means++ to select the initial conditions for K-means and determine the feasible scalability limit of the algorithm as it requires k passes over the dataset (the image in this case)

What did we learn from doing this?[edit | wikitext]

Links to code etc