Skip to content

Commit 4e80911

Browse files
committed
Add more results.
1 parent c6c29dc commit 4e80911

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ python implementation of [k-means clustering](https://en.wikipedia.org/wiki/K-me
66
# Description
77
k-means attempts to identify a user specified k(<N) number of clusters from a set of N d-dimensional real valued vectors. In lay terms, it attempts to group together similar data points in to a specified number of groups. More specifically the algorithm attempts to minimize the sum of squared distances from a cluster center, to the cluster members. The sum of squares distances is referred to as the "distortion" due to the methods origins in signal processing. The output of the algorithm is a cluster assignment for each data point, and a final level of "distortion".
88

9-
The algorithm does not produce a provably optimal solution, and initial cluster centers may cause the algorithm to get stuck in a locally optimum solution that is clearly sub-optimal ([see the basic 2d example](#basic-synthetic-2d-data) in the [Results](#results) section). Much research has focused on selecting initial cluster centers, see K-Means++ and the comparative review of initialization methods in the Resources section.
9+
The algorithm does not produce a provably optimal solution, and initial cluster centers may cause the algorithm to get stuck in a locally optimum solution that is clearly sub-optimal ([see the basic 2d example](#basic-synthetic-2d-data) in the [Results](#results) section). Much research has focused on selecting initial cluster centers, see [K-Means++]((https://en.wikipedia.org/wiki/K-means%2B%2B)) and the comparative review of initialization methods in the [Resources](#resources) section.
1010

1111
# Resources
1212

0 commit comments

Comments
 (0)