Metadata-Version: 2.1
Name: commml
Version: 0.1.4
Summary: Common ML utilities
Home-page: https://github.com/TheCSGuy25/CommML
Author: TheCSGuy25
Author-email: pandz1802@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: numpy
Requires-Dist: tqdm

# CommML
A community developed ML Library

## Installation
To install the CommML library from `pip`:
```bash
pip install CommML
```

To install the CommML library from `uv`:
```bash
uv pip install CommML
```

## Example Usage
```py
from CommML.Linear_Models import linear_regression

x = [i for i in range(10)]
y = [2*j for j in x]

model = linear_regression()
model.fit(x,y,epochs=10)
model.predict(40)
```

## **Disclaimer** 
This software is a personal project and is intended for educational and non-commercial purposes only. Any commercial use or redistribution is strictly prohibited.

