Skip to content

Commit 4812ba7

Browse files
committed
Update README
1 parent 7e0249f commit 4812ba7

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
@@ -1,7 +1,7 @@
11
# python-kmeans
22
python implementation of [k-means clustering](https://en.wikipedia.org/wiki/K-means_clustering).
33

4-
![results](resources/iris.gif "Iris Example")
4+
![results](results/iris.gif "Iris Example")
55

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".

0 commit comments

Comments
 (0)