EasyDeepLearn

What's the difference between probability, odds, and log-odds?

easy

Answer

  • Probability p in [0, 1].
  • Odds = p / (1 - p) in [0, ∞): 'how many times more likely than not'.
  • Log-odds (logit) = log(p / (1 - p)) in (-∞, ∞): a symmetric, unbounded scale, useful for modelling.
  • Logistic regression models the log-odds linearly in x, exactly because log-odds live on the real line (matching a linear predictor) and the inverse (sigmoid) automatically bounds probabilities to [0, 1].
Check yourself — multiple choice
  • Odds and probability are the same
  • Probability ∈ [0,1]; odds = p/(1-p); log-odds = log(p/(1-p)) ∈ (-∞, ∞)
  • Log-odds are always positive
  • Odds are the same as log-odds

Probability → odds (unbounded above) → log-odds (unbounded, symmetric) = ideal for linear modelling.

#logistic-regression#theory

Practise Supervised Learning

215 interview questions in this topic.

Related questions