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
- Host: GitHub
- URL: https://github.com/remusao/hkmeans
- Owner: remusao
- License: gpl-2.0
- Created: 2013-04-30T11:11:32.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2013-05-03T18:54:18.000Z (about 12 years ago)
- Last Synced: 2025-02-15T07:20:11.091Z (3 months ago)
- Language: Haskell
- Size: 152 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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-fusionInstallation
------------It's really simple to install the package using cabal-install :
```
$ git clone https://github.com/remusao/HKMeans.git HKMeans
$ cd HKMeans
$ cabal install
```