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

https://github.com/yangeorget/clustering-algorithms

K-means and C-means experiments with Numpy
https://github.com/yangeorget/clustering-algorithms

clustering clustering-algorithm numpy

Last synced: 3 months ago
JSON representation

K-means and C-means experiments with Numpy

Awesome Lists containing this project

README

          

# Clustering algorithms powered by Numpy

This is an fast implementation of K-Means, K-Means++ and C-Means with Numpy.

## How to install ?
This package is distributed on
and can be installed by the following command:
```bash
pip install clustering-algorithms
```

## How to contribute ?
Comments and PR are very welcome.
You can check the coding conventions by running the following command:
```bash
./scripts/bash/style.sh
```

## Miscellaneous
### Performance comparison of K-Means and C-Means
```bash
PYTHONPATH=. python ./scripts/python/performance.py
```

### Plotting K-Means and C-Means
```bash
PYTHONPATH=. python ./scripts/python/plot.py
```