Log Odds
The log odds is the logarithm applied to the Odds.
f(p)=log(1−pp)
In a Logistic Regression we try to predict these log odds via a linear combination of the features (just like in Perceptron or Linear Regression we assume this linear relationship).
log(1−P(y=1)P(y=1))=log(P(y=0)P(y=1))=β0+β1x1+…+βpxp
The Sigmoid Function is the inverse function of the logit function, so we can get back the normal probability p.
σ(f(p))=p
Explainability
Increasing a features value xj by one unit (this is happening in the numerator), the odds ratio changes by a factor of eβj.
oddsoddsxj+1=exp(β0+β1x1+…+βjxj+…+βpxp)exp(β0+β1x1+…+βj(xj+1)+…+βpxp)=exp(βj(xj+1)−βjxj)=exp(βj)
We can rewrite this to
oddsxj+1=odds⋅eβj.
Which leads to the conclusion that the odds will increase multiplicative by the exponential of the weight of that feature.