Skip to content

Latest commit

 

History

History
17 lines (10 loc) · 332 Bytes

File metadata and controls

17 lines (10 loc) · 332 Bytes

Logistic Regression with Python and Numpy

Implemented Logistic Regression with the scikit-learn breast_cancer dataset


Objective

  • Making model from scratch using Python and Numpy

What I learned

  • How weights and biases are implemented and updated
  • How to compute loss
  • How functions behind the model works