Goal : Estimate the unknown parameters of the logistic regression model.
Likelihood Function:
For binary outcomes:
where is the sigmoid function.
Log-Likelihood Function:
Estimation :
Find that minimises the negative log-likelihood:
Apr 10, 20261 min read
Goal : Estimate the unknown parameters θ of the logistic regression model.
Likelihood Function:
L(θ∣y,x)=i∏P(yi∣xi;θ)For binary outcomes:
P(yi∣xi;θ)=σ(xi)yi(1−σ(xi))1−yiwhere σ(xi)=1+exp(−θ⊤xi)1 is the sigmoid function.
Find θ^MLE that minimises the negative log-likelihood:
θMLE=argθmin[−ℓ(θ)]