Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/0h-n0/fclustering
https://github.com/0h-n0/fclustering
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/0h-n0/fclustering
- Owner: 0h-n0
- Created: 2023-02-24T09:20:49.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2023-02-24T09:22:57.000Z (almost 2 years ago)
- Last Synced: 2024-11-09T09:49:45.626Z (3 months ago)
- Language: Python
- Size: 19.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 Datasetmodel = PLSA()
dataset = Dataset.from_csv("hogehoge.csv", sparse=True)
result = model.run(dataset)
result.visualize("hogehoge.png")
result.dump_csv("output.csv")
```