Metadata-Version: 2.4
Name: CommML
Version: 0.1.3
Summary: Common ML utilities
Home-page: https://github.com/yourusername/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
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# CommML
A community developed ML Library

## Installation
To install the CommML library from pip:
```py
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.

