Metadata-Version: 2.4
Name: fastkmeanspp
Version: 0.1.3
Summary: KMeans++ clustering algorithm
Author: Félix Laplante
Project-URL: Source, https://gitlab.com/felixlaplante0/fastkmeanspp
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy
Requires-Dist: scipy
Requires-Dist: scikit-learn
Requires-Dist: faiss-cpu
Dynamic: license-file

# 📊 KMeans++

**fastkmeanspp** is a Python package that implements a KMeans clone from `scikit-learn` but with a much faster centroid initialization and optimized for speed with FAISS. It is designed to be a drop-in replacement for `scikit-learn`'s KMeans implementation.

---

## 🚀 Installation

```bash
pip install fastkmeanspp
```

## 📖 Learn More

For tutorials, API reference, visit the official site:  
👉 [fastkmeanspp Documentation](https://felixlaplante0.gitlab.io/fastkmeanspp)
