Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

why gradient descent when we can solve linear regression analytically

what is the benefit of using Gradient Descent in the linear regression space? looks like the we can solve the problem (finding theta0-n that minimum the cost func) with analytical method so why we still want to use gradient descent to do the same thing? thanks

like image 203
John Avatar asked Aug 12 '13 16:08

John


People also ask

Why gradient descent is used in linear regression?

Gradient Descent Algorithm gives optimum values of m and c of the linear regression equation. With these values of m and c, we will get the equation of the best-fit line and ready to make predictions.

Can linear regression be solved analytically?

Introduction. We have known optimization method like gradient descent can be used to minimize the cost function of linear regression. But for linear regression, there exists an analytical solution. That means we can obtain the variables for linear regression in one step calculation by using the right formula.

Is gradient descent analytical?

Gradient Descent is preferred over analytical solutions due to its computational speed and the lack of closed-form solutions for some Regression models. This necessitates the implementation of iterative numerical methods.

What is the difference between gradient descent and linear regression?

Simple linear regression (SLR) is a model with one single independent variable. Ordinary least squares (OLS) is a non-iterative method that fits a model such that the sum-of-squares of differences of observed and predicted values is minimized. Gradient descent finds the linear model parameters iteratively.


2 Answers

When you use the normal equations for solving the cost function analytically you have to compute:

enter image description here

Where X is your matrix of input observations and y your output vector. The problem with this operation is the time complexity of calculating the inverse of a nxn matrix which is O(n^3) and as n increases it can take a very long time to finish.

When n is low (n < 1000 or n < 10000) you can think of normal equations as the better option for calculation theta, however for greater values Gradient Descent is much more faster, so the only reason is the time :)

like image 55
jabaldonedo Avatar answered Oct 08 '22 13:10

jabaldonedo


You should provide more details about yout problem - what exactly are you asking about - are we talking about linear regression in one or many dimensions? Simple or generalized ones?

In general, why do people use the GD?

  • it is easy to implement
  • it is very generic optimization technique - even if you change your model to the more general one, you can stil use it

So what about analytical solutions? Well, we do use them, your claim is simply false here (if we are talking in general), for example the OLS method is a closed form, analytical solution, which is widely used. If you can use the analytical solution, it is affordable computationaly (as sometimes GD is simply cheapier or faster) then you can, and even should - use it.

Neverlethles this is always a matter of some pros and cons - analytical solutions are strongly connected to the model, so implementing them can be inefficient if you plan to generalize/change your models in the future. They are sometimes less efficient then their numerical approximations, and sometimes there are simply harder to implement. If none of above is true - you should use the analytical solution, and people do it, really.

To sum up, you rather use GD over analytical solution if:

  • you are considering changes in the model, generalizations, adding some more complex terms/regularization/modifications
  • you need a generic method because you do not know much about the future of the code and the model (you are only one of the developers)
  • analytical solution is more expensive computationaly, and you need efficiency
  • analytical solution requires more memory, which you do not have
  • analytical solution is hard to implement and you need easy, simple code
like image 34
lejlot Avatar answered Oct 08 '22 12:10

lejlot