Learn practical skills, build real-world projects, and advance your career
!pip install jovian --upgrade --quiet

##General algorithm of linear regression:



  1. prepare datasets

  2. design models

  3. construct loss function --MSE and optimizer --SGD

  4. Training Loop:

    i. forward pass : compute prediction and loss

    ii. backward pass : gradient

    iii. updates weights

##General algorithm of logistic regression:



1.prepare datasets
2. design models with activition funcions

  1. construct loss function and optimizer

  2. training loop:

    i. forward pass: compute prediction and loss
    ii. backward pass : gradient
    iii. updates weights

 

Logistic Regression

Logistic Regression is a core supervised learning technique for solving classification problems.