Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 658 Bytes

README.md

File metadata and controls

17 lines (13 loc) · 658 Bytes

ML-algorithms-implementation

This repository aims to provide clear and concise implementations of popular machine learning algorithms. The goal is to understand the underlying math and concepts behind machine learning models and practice building them from scratch.

Algorithms implemented

  1. Linear Regression

    • Multiple Linear Regression
    • Metrics (MAE, MSE, RMSE, MAPE, R2)
    • Regularization (L1, L2, ElasticNet)
    • Stochastic Gradient Descent
  2. Logistic Regression

    • Binary Logistic Regression
    • Metrics (Accuracy, Precision, Recall, F1, ROC AUC)
    • Regularization (L1, L2, ElasticNet)
    • Stochastic Gradient Descent