Metadata-Version: 2.1
Name: fcmeans_softwrd
Version: 0.0.1
Summary: A Python package of Fuzzy-C-means algorithm for softwrd data and ml team.
Home-page: https://github.com/softwrdai/ml-fuzzy-c-means
Author: Kazi Ferdous Mahin, Md Abu Zahed Antu, Proshanta Kumer Das
Author-email: mahin@softwrd.ai, antu@softwrd.ai, proshanto@softwrd.ai
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: Microsoft :: Windows
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: boto3
Requires-Dist: pydantic
Requires-Dist: tqdm
Requires-Dist: typer

[![Build and Release Python Package](https://github.com/softwrdai/ML-FUZZY-C-MEANS/actions/workflows/release_package.yaml/badge.svg)](https://github.com/softwrdai/ML-FUZZY-C-MEANS/actions/workflows/release_package.yaml)


# ml-fuzzy-c-means
This package will be a unified implementation of the fuzzy c-means clustering algorithm, a popular method for clustering data points into distinct groups.

## Download the package
* Please go to the release page to download the package ``*.whl`` file
* After downloading the package, please run the following command to install the package
```bash
pip install fcmeans_softwrd
```

## How to use the package

* Once done the installation mentioned in the above section [Download the package](#download-the-package), please import the package in your python code as follows
```python
import fcm

fcm.__version__

```
