Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/0h-n0/fclustering


https://github.com/0h-n0/fclustering

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# fclustering (Fuzzy Clustering)
fclustering is Pyro-backend Fuzzy Clustering Python library

## Installation

```shell
$ pip install fclustering
```

## how to use

```python
from fclusetring.model import PLSA
from flustering.dataset import Dataset

model = PLSA()
dataset = Dataset.from_csv("hogehoge.csv", sparse=True)
result = model.run(dataset)
result.visualize("hogehoge.png")
result.dump_csv("output.csv")
```