Metadata-Version: 2.1
Name: RegressionLibrary
Version: 0.2
Summary: Educational regression models built from scratch in Python
Home-page: https://github.com/Alouakhalid/RegressionLibrary
Author: Ali Khalid Ali Khalid
Author-email: ali88883737@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
License-File: LICENSE.save
Requires-Dist: numpy
Requires-Dist: tqdm

# RegressionLib

**RegressionLib** is a lightweight, educational regression library implemented from scratch in Python with NumPy. It supports multiple regression models, aiming to help students and researchers understand the mathematical foundations of regression algorithms without the black-box nature of larger frameworks.

---

## 🚀 Features

- Linear Regression  
- Lasso Regression (L1 regularization)  
- Ridge Regression (L2 regularization)  
- Polynomial Regression  
- Clean, beginner-friendly API (`fit`, `predict`, `evaluate`)  
- Minimal dependencies (NumPy only)  
- Clear educational codebase, easy to extend

