Created
January 24, 2014 04:44
-
-
Save cocodrips/8592198 to your computer and use it in GitHub Desktop.
K-means in CoffeeScript
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class ClusteringObj | |
| constructor: (@coordinate, @clusterId)-> | |
| class @Centroid | |
| constructor: (keys)-> | |
| @num = 0 | |
| @coordinate = {} | |
| for k in keys | |
| @coordinate[k] = 0 | |
| class @Kmeans | |
| constructor: (coordinates, k)-> | |
| @objs = [] | |
| @k = k | |
| @objKeys = Object.keys(coordinates[0]) | |
| @dim = @objKeys.length | |
| for coordinate, i in coordinates | |
| @objs[i] = new ClusteringObj(coordinate, i % k) | |
| start: ()-> | |
| for _ in [0...10] | |
| centroids = @calcCentroids() | |
| @updateClusterId(centroids) | |
| return @objs | |
| calcCentroids: ()-> | |
| centroids = [] | |
| for c in [0...@k] | |
| centroids[c] = new Centroid(@objKeys) | |
| for obj in @objs | |
| centroids[obj.clusterId].num+=1 | |
| for k, v of obj.coordinate | |
| centroids[obj.clusterId].coordinate[k] += v | |
| for c in [0...@k] | |
| for k in @objKeys | |
| centroids[c].coordinate[k] /= centroids[c].num | |
| return centroids | |
| updateClusterId: (centroids)-> | |
| INF = 100000000000 | |
| for obj in @objs | |
| min = null | |
| min_dist = INF | |
| for c in [0...@k] | |
| dist = @distance(obj.coordinate, centroids[c].coordinate) | |
| if dist < min_dist | |
| min_dist = dist | |
| min = c | |
| obj.clusterId = min | |
| distance: (a, b)-> | |
| sum = 0 | |
| for k of a | |
| sum += Math.pow(a[k] - b[k], 2) | |
| return Math.sqrt(sum) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment