An open API service indexing awesome lists of open source software.

https://github.com/remusao/hkmeans

A naive, yet efficient, implementation of the KMeans algorithm written in Haskell
https://github.com/remusao/hkmeans

Last synced: about 1 month ago
JSON representation

A naive, yet efficient, implementation of the KMeans algorithm written in Haskell

Awesome Lists containing this project

README

        

HKMeans
=======

This is a naive implementation of the KMeans algorithm written in Haskell.
Yet it is still pretty efficient and work will be done to improve further
in term of performence and code quality.

Dependencies
------------

* hmatrix
* random
* stream-fusion

Installation
------------

It's really simple to install the package using cabal-install :

```
$ git clone https://github.com/remusao/HKMeans.git HKMeans
$ cd HKMeans
$ cabal install
```