advanced section 5 generalized linear models logistic
play

Advanced Section #5: Generalized Linear Models: Logistic Regression - PowerPoint PPT Presentation

Advanced Section #5: Generalized Linear Models: Logistic Regression and Beyond Marios Mattheakis and Pavlos Protopapas CS109A Introduction to Data Science Pavlos Protopapas and Kevin Rader 1 Outline 1. Generalized Linear Models (GLMs): a.


  1. Advanced Section #5: Generalized Linear Models: Logistic Regression and Beyond Marios Mattheakis and Pavlos Protopapas CS109A Introduction to Data Science Pavlos Protopapas and Kevin Rader 1

  2. Outline 1. Generalized Linear Models (GLMs): a. Motivation. b. Linear Regression Model (Recap): jumping-off point c. Generalize the Linear Model: i. Generalization of random component (Error Distribution). ii. Generalization of systematic component (Link Function). 2. Maximum Likelihood Estimation in this General Framework: a. Canonical Links. b. General Links. CS109A, P ROTOPAPAS , R ADER 2

  3. Motivation Ordinary Linear Regression (OLS) is a great model … but cannot describe all the situations. OLS assumes: ➢ Normal distributed observations. ➢ Expectation that linearly depends on predictors. Many real-world observations do not follow these assumptions, e.g.: ➢ Binary data: Bernoulli or Binomial distributions. ➢ Positive data: Exponential or Gamma distributions. CS109A, P ROTOPAPAS , R ADER 3

  4. GLMs formulations: Overview Error distribution: Normal Exponential Family Poisson Distributions Bernoulli ...more Generalized Linear Models Regression Model Link Function ...more CS109A, P ROTOPAPAS , R ADER 4

  5. Regression Models Suppose a dataset with n training points In a Regression model we are looking for: ➢ is some fixed but unknown function. ➢ a random error term. CS109A, P ROTOPAPAS , R ADER 5

  6. Linear Regression Model The observations are independently distributed about: A linear predictor with a Normal distribution. Linear Model: CS109A, P ROTOPAPAS , R ADER 6

  7. Linear Regression Model The conditional on the predictor distribution: CS109A, P ROTOPAPAS , R ADER 7

  8. GLMs formulation CS109A, P ROTOPAPAS , R ADER 8

  9. GLMs formulation This will be a two-step generalization of simple linear regression. 1. Random Component: 2. Systematic Component: CS109A, P ROTOPAPAS , R ADER 9

  10. Exponential Family of Distributions A wide range of distributions that includes a special cases the Normal, exponential, Gamma, Poisson, Bernoulli, binomial, and many others. : canonical parameter and is the parameter of interest. : dispersion parameter and is a scale parameter relative to variance. : cumulant function and completely characterizes the distribution. : normalization factor. CS109A, P ROTOPAPAS , R ADER 10

  11. Likelihood and Score function Likelihood: log-likelihood: easier and numerically more stable Score function: CS109A, P ROTOPAPAS , R ADER 11

  12. Two General Identities is the called Fisher information matrix. denotes the ν moment. CS109A, P ROTOPAPAS , R ADER 12

  13. Some derivatives before the proofs First derivative of log-likelihood: Second derivative of log-likelihood: CS109A, P ROTOPAPAS , R ADER 13

  14. Some useful relations before the proofs The ν moment of an arbitrary function: Since the observations are assumed independent of each other: For a well defined probability density: CS109A, P ROTOPAPAS , R ADER 14

  15. Proof of Identity I Proof: the regularity condition takes the derivative out of the integral. CS109A, P ROTOPAPAS , R ADER 15

  16. Proof of Identity II Proof 1st term: 2nd term: CS109A, P ROTOPAPAS , R ADER 16

  17. Mean & Variance Formulas in the Exponential Family where primes denote derivatives w.r.t. canonical parameter is the cumulant function of the distribution, since it completely determines the first two moments. CS109A, P ROTOPAPAS , R ADER 17

  18. Some derivatives before the proofs CS109A, P ROTOPAPAS , R ADER 18

  19. Proof of mean formula Proof CS109A, P ROTOPAPAS , R ADER 19

  20. Proof of Variance formula Proof CS109A, P ROTOPAPAS , R ADER 20

  21. Normal Distribution: Example Probability density in Normal distribution: CS109A, P ROTOPAPAS , R ADER 21

  22. Bernoulli distribution: Example It is a discrete probability distribution of a random binary variable: CS109A, P ROTOPAPAS , R ADER 22

  23. Second step of GLMs formulation: Link Function Systematic Component: CS109A, P ROTOPAPAS , R ADER 23

  24. Link Function A link function is a one-to-one differentiable transformation that transforms the expectation values to be linear with the predictors is called linear predictor. One-to-one function, so we can invert to get The link transforms the expectation NOT the observations. For instance, for the link CS109A, P ROTOPAPAS , R ADER 24

  25. Canonical Links A Canonical Link makes the linear predictor equal to the canonical parameter A Canonical Transformation is relative to the cumulant function So, the cumulant function must be invertible CS109A, P ROTOPAPAS , R ADER 25

  26. Normal and Bernoulli distributions: Examples Normal Distribution: We found earlier: Hence, Bernoulli Distribution: We found earlier: Hence, CS109A, P ROTOPAPAS , R ADER 26

  27. Data Distribution and Canonical Links CS109A, P ROTOPAPAS , R ADER 27

  28. GLMs: A general framework We found that linear, logistic and other regression models are special cases of the GMLs. Working in such a general framework is a great advantage. There is general theory that can be applied afterwards in any specific distribution and regression model. For instance, we have the general Likelihood and we can derive to general equations that Maximize the Likelihood. CS109A, P ROTOPAPAS , R ADER 28

  29. Maximum Likelihood Estimation (MLE) CS109A, P ROTOPAPAS , R ADER 29

  30. Maximum Likelihood Estimation (MLE) Likelihood in the Exponential Family: Log-likelihood in the Exponential Family: CS109A, P ROTOPAPAS , R ADER 30

  31. log-likelihood is a strictly concave function hence, it can be maximized. CS109A, P ROTOPAPAS , R ADER 31

  32. MLE for Canonical Links Normal Equations for MLE Solving Normal Equations we estimate the coefficients CS109A, P ROTOPAPAS , R ADER 32

  33. MLE Examples Normal Distribution: Link = Identity Bernoulli Distribution: Link = Logit CS109A, P ROTOPAPAS , R ADER 33

  34. MLE for General Links Sometimes we may use non-Canonical links. For instance, for algorithmic purposes such in the Bayesian probit regression. Generalizing Estimating Equations: CS109A, P ROTOPAPAS , R ADER 34

  35. Summary Generalized Linear Models: • Motivation: OLS cannot describe everything. Good jumping-off. 1. Formulation: 2. ➢ Generalization of Random Component (error distribution). ➢ Generalization of Systematic Component (Link function). Normal & Bernoulli distributions: Examples. 3. • Maximum Likelihood Estimation (MLE) 1. General Framework: One theory for many regression models. Normal Equations for MLE (Canonical Links). 2. ➢ Linear & Logistic Regression examples. Generalized Estimating Equations (General Links). 3. CS109A, P ROTOPAPAS , R ADER 35

  36. Advanced Section 5: Generalized Linear Models Questions ?? Office hours for Adv. Sec. Monday 6:00-7:30 pm Tuesday 6:30-8:00 pm CS109A, P ROTOPAPAS , R ADER 36

  37. General Equations: Proof Using the chain rule: hence CS109A, P ROTOPAPAS , R ADER 37

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend