Metadata-Version: 2.1
Name: mltools_is
Version: 0.2.0
Summary: Utilitaires ML légers : normalisation, split, encodage
Author-email: soumare <ibsoumareisidk@groupeisi.com>
License: MIT
Keywords: machine learning,preprocessing,data science
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.5
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy >=1.24
Provides-Extra: dev
Requires-Dist: pytest >=7.0 ; extra == 'dev'
Requires-Dist: pytest-cov ; extra == 'dev'
Requires-Dist: ruff ; extra == 'dev'
Requires-Dist: mypy ; extra == 'dev'

# mltools


Utilitaires ML légers : normalisation, train/test split, encodage one-hot.


## Installation


```bash
pip install mltools_is
```


## Utilisation


```python
import numpy as np
from mltools_is import normalize, train_test_split


X = np.array([[1, 2], [3, 4], [5, 6]])
X_norm = normalize(X)
```
