项目作者: parallelo-ai

项目描述 :
kmeans algorithm with go
高级语言: Go
项目地址: git://github.com/parallelo-ai/kmeans.git
创建时间: 2019-09-18T22:04:55Z
项目社区:https://github.com/parallelo-ai/kmeans

开源协议:MIT License

下载


kmeans

k-means clustering algorithm implementation written in Go. The k-means
clustering algorithm partitions a multi-dimensional data set into k clusters,
where each data point belongs to the cluster with the nearest mean, serving as
a prototype of the cluster.

This code is built upon the work of https://github.com/muesli/kmeans
Just removed the features we considered unnecessary (such as charting), and the
use of external dependencies so that the package is more self-contained.

Future

We plan to add other distance functions besides the already implemented
Euclidean distance