Logistic Regression tutorial

A beautiful sight
Test your knowledge
0%

Logistic Regression tutorial - Quiz 1

1 / 3

What is the difference between Gradient Descent and Gradient Ascent?

2 / 3

Screenshot From 2020 03 22 09 56 02

Above is the formula of the Logistic regression. What is the value of x0?

3 / 3

Screenshot From 2020 03 22 09 56 02

Above is the formula of Logistic regression. What is the function g()?

Your score is

0%

Please rate this quiz

Greetings!

Following the previous post, An overview of Logistic Regression, today we are going to delve deeper into how Logistic Regression works and the rationale behind its theory.

Let’s get started!

Recall from the last blog, Logistic Regression (in our scope) is a classification algorithm that uses a linear and additive combination of the predictor variables to predict the binary output of the response variable.

The Logistic Regression takes the form:

y' = h_w(x) = g(w_0x_0 + w_1x_1 + ... + w_mx_m)

or just:

y' = h_w(x) = g(\sum_{0 \leq i \leq m} w_ix_i)

where:

  • y’ is the predicted response value.
  • m is the number of predictor variables.
  • x is the vector of predictor variable values for each data point.
  • w is the vector of weights (or coefficients) of Logistic Regression.

Note that x_0 is always set to be 1 for every data point. Thus, w_0x_0 = w_0 and this value is called the intercept of the regressor.

The function g() is called Logistic Function (or another name, Sigmoid Function), which takes input as a continuous value (without bound) and outputs a value that is bounded in the range (0, 1).

Below are the form and the plot of g().

g(z) = \frac{1}{1 + e^{-z}}

logistic function

Any data point that has output value y' > 0.5 is classified as 1-class (or sometimes we say, positive, or +), while data points with value y' < 0.5 are marked as 0-class (or negative, or -). An exception is when y' = 0.5, meaning the regressor doesn’t have any idea about how to classify this point at all. As this case is very rare (you can see that the probability of getting 0.5, an exact value, from a continuous space is 0), we take the convention that y' \geq 0.5 indicates 1-class label.

Now we already get how a Logistic Regressor predicts a value, the difficulty becomes: how to train a Logistic Regressor (so that it has the best possible set of weights). To train means we make the model fit the data, in other words, we define an error term (or objective term) and try to minimize (or maximize) this term by adjusting the parameters of the model (for Logistic Regression, the parameters are the weights w_0, w_1, ..., w_m). A very common way to define an objective term is by using Maximum Likelihood.

Notice that because the output value of the Logistic Function is in the range (0, 1), we can interpret this value as the probability of the data point to be in the Positive class. For example, if h_w(x^{(i)}) = 0.7, we say that the probability of x^{(i)} belonging to the Positive class is 0.7, and thus the probability that x^{(i)} falls into the Negative class is 0.3 . Writing this is the formula-form gives:

\begin{aligned}&p(y = 1|x;w) = h_w(x) \\&p(y = 0|x;w) = 1 - h_w(x)\end{aligned}

or just:

p(y | x;w) = (h_w(x))^y(1-h_w(x))^{1-y}

(substituting y with 1 and 0 in the above formula will give you the equivalent of the higher above 2 formulas)

Assuming that the n training data points are independent, the Likelihood can be written as:

\begin{aligned}L(w) &= p(y|X;w) \\         &= \prod_{i = 1}^n p(y^{(i)} | x^{(i)}; w) \\         &= \prod_{i = 1}^n (h_w(x^{(i)}))^{y^{(i)}} (1 - h_w(x^{(i)}))^{1-y^{(i)}}\end{aligned}

We want to maximize this likelihood. However, being the multiplication of many values (2n values, with n is the number of data points) and each of these values is \leq 1, the resulting likelihood will likely be flawed/overflowed as number-representation in computers is limited. Another problem of Likelihood is that it is more complex for math-transformations when it comes to executing products.

To resolve these problems, instead of trying to maximize Likelihood, we can maximize the Log-Likelihood, which is a strictly increasing function of Likelihood (put differently, likelihood and log-likelihood increase or decrease together, thus maximizing log-likelihood is also equivalent to maximizing likelihood). The log-likelihood is:

\begin{aligned}l(w) &= log(L(w)) \\        &= \sum_{i = 1}^n y^{(i)}log(h(x^{(i)})) + (1 - y^{(i)})log(1 - h(x^{(i)}))\end{aligned}

As this is an optimization problem, many algorithms exist and are ready to be put in use (some are Simulated Annealing, Genetic Algorithm, Newton’s method). However, as we are working with Machine Learning, the most popular choice would be Gradient Descent (or Gradient Ascent).

Note that the Gradient Descent method is also sometimes called Gradient Ascent. They are basically the same with one trying to find the minimum (“descent” to the lowest position) and another finding the maximum (“ascent” to the highest position). These 2 can be simply converted to the other one with a flip (i.e. change the sign) in the objective function. In our current problem, as we try to maximize log-likelihood, we will use the Gradient Ascent method.

As using Gradient Descent/Ascent requires taking the derivatives, let us spend a little time examining the derivative of Logistic Function beforehand:

\begin{aligned}g'(z) &= \frac{d}{dz} (\frac{1}{1 + e^{-z}})  \\        &= \frac{d}{d(e^{-z})} \frac{1}{1+e^{-z}} . \frac{d}{dz} e^{-z} \\        &= -\frac{1}{(1+e^{-z})^2} . (-e^{-z}) \\        &= \frac{1}{(1+e^{-z})^2} . e^{-z} \\        &= \frac{1}{1+e^{-z}} . \frac{e^{-z}}{1+e^{-z}} \\        &= \frac{1}{1+e^{-z}} . (1 - \frac{1}{1+e^{-z}}) \\        &= g(z)(1 - g(z)).\end{aligned}

This equation will be useful for our subsequent transformations.

Remember that the nature of Gradient Ascent is to iteratively move a little bit to the direction that seems to give a better result. To realize which direction and how much (small or steep) to move for a better result, we use the derivative at the current position. We also pre-determine a parameter \alpha (called the learning rate) to leverage how we adjust the parameters. Put differently, we update w := w + \alpha \nabla_w(l(w)).

Gradient Ascent (and also Gradient Descent) has some variants. Batch Gradient Ascent: we compute the value to update by using all the training points at once. Stochastic Gradient Descent: we choose one random data point at a time and execute the update for this data point only. Mini-batch Gradient Descent: each time we take a small subset of the data points to examine. Note that all these variants are iterative methods, i.e. we loop the process many times.

For simplicity, we will illustrate our work with the Stochastic Gradient Ascent (using 1 data point at a time). The other 2 are easily producible from this one. Also, we try to update 1 weight each, we call it w_j (1 \leq j \leq m).

\begin{aligned}\nabla_{w_j}(l(w)) &= \frac{\partial}{\partial w_j} l(w) \\                                 &= \frac{\partial}{\partial h(x)} (y log(h(x)) + (1 - y) log(1 - h(x))) \frac{\partial}{\partial w_j} h(x) \\                                 &= (y \frac{1}{h(x)} - (1 - y) \frac{1}{1 - h(x)}) \frac{\partial}{\partial w_j} h(x) \\                                 &= (y \frac{1}{g(wx)} - (1 - y) \frac{1}{1 - g(wx)}) \frac{\partial}{\partial w_j} g(wx) \\                                 &= (y \frac{1}{g(wx)} - (1 - y) \frac{1}{1 - g(wx)}) \frac{\partial}{\partial (wx)} g(wx) \frac{\partial}{\partial w_j} wx \\                                 &= (y \frac{1}{g(wx)} - (1 - y) \frac{1}{1 - g(wx)}) g(wx)(1 - g(wx)) x_j \\                                 &= (y(1-g(wx)) - (1 - y)g(wx))x_j \\                                 &= (y - g(wx)) x_j \\                                 &= (y - h(x)) x_j\end{aligned}

Hence, we have, for each update:

w_j = w_j + \alpha (y - h(x)) x_j

Or more general:

w = w + \alpha (y - h(x)) x

The updating rule becomes very simple, the amount of update is just directly related to the difference between the real and predicted values. The rule is identical to of OLS even though the problem and algorithm are different. Actually, this is not a coincidence. A more detailed explaination about this phenomenon is given in another post about Generalized Linear Models.

Logistic Regression in Python

We can find an implementation of Logistic Regression in the sklearn library: sklearn.linear_model.LogisticRegression.

There are some notes about this pre-built model:

  • Regularization is applied by default.
  • The type of available regularization depends on the chosen solver.
  • Multi-class classification is supported.
  • Class weight is supported.
  • We can get the coefficient weights and the number of iterations after the model finishes training.
Test your understanding
0%

Logistic Regression tutorial - Quiz 2

1 / 6

Gradient Accent is a ...

2 / 6

What is the role of the learning rate?

3 / 6

Why should we optimize log-likelihood instead of likelihood? Choose all that apply.

4 / 6

Which call gives an object of Logistic regression in Python?

5 / 6

Regarding Logistic regression, what is the likelihood of a parameter set w (i.e. L(w))?

6 / 6

For a data sample, the Logistic regression model outputs a value of 0.8, what does this mean?

Your score is

0%

Please rate this quiz

Conclusion

I’m glad we are finally here!

In this blog, we talked about the theory behind Logistic Regression, the Log-likelihood maximization problem and how to solve this optimization stuff with the Gradient Accent method, along with how to run the algorithm automatically in Python.

There are more to come in the following blogs of this Logistic Regression series. Hence, if you enjoyed reading this blog, let’s go straight to the next one!

Goodbye and good luck!

References:

  • Stoltzfus’s Logistic Regression: A brief Primer: link
  • Wikipedia’s page about Logistic regression: link
  • sklearn Logistic Regression: link
  • Andrew Ng’s Machine Learning course CS229, note 1: link

Leave a Reply