Metadata-Version: 2.4
Name: kmeans-from-scratch
Version: 0.1.7
Summary: A from-scratch implementation of K-Means clustering algorithm
Author-email: LAGUCHORI TARIK <tarik.lagu@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/laguchori/kmeans-from-scratch
Project-URL: Repository, https://github.com/laguchori/kmeans-from-scratch.git
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: numpy>=1.20.0
Provides-Extra: dev
Requires-Dist: pytest>=7.0.0; extra == "dev"
Requires-Dist: black; extra == "dev"
Requires-Dist: flake8; extra == "dev"

# K-Means From Scratch

Une implémentation de l'algorithme K-Means en Python avec NumPy uniquement.

## Installation

```bash
pip install kmeans-from-scratch-laguchori
