Logistic Regression

Creator
Creator
Seonglae ChoSeonglae Cho
Created
Created
2023 Mar 16 1:58
Editor
Edited
Edited
2025 May 20 15:43

Transform probability to linear form like
Linear Regression
using
Odds ratio

Unlike linear regression, it handles non-linear relationships well while still being mathematically treatable as linear.
It uses a sigmoid function to output values between 0 and 1, maximizing the log-likelihood.
notion image
to make convex cost function
notion image
Logistic Regression Notion
This leads to described by
Bernoulli Distribution
you can use
Newton–Raphson method
or
Stochastic Gradient Descent
and prior one achieves faster convergence or
IRLS
is much faster
difference between
Linear Regression
is that usage of sigmoid function or logistic function
a change of one unit of feature changes the odds ratio by a factor
 

Logistic Multinomial Regression

 

Recommendations