23

Understanding Gradient Descent And Its Variants

 4 years ago
source link: https://towardsdatascience.com/understanding-gradient-descent-and-its-variants-cf0df5c45478?gi=f3c500981212
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

Gain a brief understanding of how optimization algorithms support the learning process in machine learning models

Machine learning models are fantastic; they can recognize objects in videos; they can automatically generate captions for images and accurately classify pictures of cats and dogs (sometimes).

vmErQvi.jpg!web

Image from https://www.kaggle.com/c/dogs-vs-cats

This article will provide a surface level understanding of what happens underneath the hood of Machine learning models. More specifically, we will be exploring the ‘backbone algorithms’ that enable these machine learning models to learn.

The ‘backbone algorithms’ are called Optimization algorithms. Below are some definitions of keywords you will encounter within this article, and optimization algorithm is amongst the provided descriptions.

  • Optimization algorithm : An algorithm that is executed a predefined number of times and is used to find optimal solutions to problems, in mathematical terms, these ‘problems’ are referred to as functions.
  • Gradient Descent : This optimization algorithm is recruited to find values that reduce the cost function. This is done through the calculation of a gradient value, that is utilized to select values at each step that finds the local minimum of a cost function. The negative of the gradient is used to find the local minimum.
  • Cost function : This is a method that quantifies ‘how well’ a machine learning model performs. The quantification is an output(cost) based on a set of inputs, which are referred to as parameter values. The parameter values are used to estimate a prediction, and the ‘cost’ is the difference between the prediction and the actual values.
  • Global Minimum : This is the smallest parameter values that lie within the entire domain of a cost function. You might come across a local minimum, which refers to the lowest parameter values that lie within a set range of the cost function.
  • Convergence : This describes the notion of movement towards optimal parameter values or global minimum when used in the context of machine learning

At the bottom of this article is a link to some standard machine learning terms and their definitions. Think of it as a Christmas gift :blush:.

The optimization algorithm we will be exploring in this article is Gradient Descent.

Gradient Descent

Gradient Descent is a very common optimization algorithm, and most likely, the first optimization algorithm a lot of Machine learning engineers and Data scientists are introduced to.

Let's paint a picture. We have a cost function, and we need to find the optimum solution to solve the cost function. Here comes gradient descent, an algorithm that works by making changes to the values of the parameters that are within the model, all in the purpose of minimizing the cost function. An example of a cost function is Mean Squared Error .

Gradient descent intrinsic functionality works by finding the direction to take towards a local minimum based on the calculated gradient obtained from the error function with respect to the parameters at a particular data point.

It might help to understand gradient descent with some imagery and visualization.

Let’s use a graph that contains a bowl-shaped curve, and a ball, placed on the top left side of the curve. The ball represents a certain point (value) in the parameter space that is initially randomly chosen, and the curve represents the cost values plotted against a range of parameter values. The goal is to reach the parameter value that provides the lowest cost value.

On the x-axis of the plot is a value representing the cost, and on the y-axis is a value denoted by ‘X’ that represents the range of parameter values that we are utilizing to solve the cost function.

FJveYv3.png!web

Image of a cost function curvature

The minimum (plural)/minima(singular) is a point within the slope where the optimum value that minimizes the cost function exists, and gradient descent is the algorithm that guides our ball towards the minimum at several steps (iterations).

To solve the cost function, we are looking for the lowest point of the curve, and this is the point where the gradient is zero or close to zero.

Quick note: Cost function curve aren’t always necessarily a nice bowl shape with one local minima. In the example used in the image above there is only one input paramter(1 dimensional paramter space) to the cost fucntion, but in practice, the parameter space tends to have more dimensions.

Batch Gradient Descent

We understand how gradient descent works and can now apply it to our training data. The application of the gradient descent algorithm to training data comes in various forms. One form is called Batch Gradient Descent (BGD) .

In the image above, we take steps towards a local minimum. In BGD, we actually utilize every training data at our disposal to decide as to which direction and by how much we move towards a minimum. We use all our training data at each step.

For extensive training data, the training process can be prolonged but can be computationally efficient as we do not make any changes to our model parameters as often as other variants of gradient descent.

Although BGD is not memory efficient, as you can imagine that we require all our datasets available in memory when training a model.

Stochastic Gradient Descent

On the other side of the coin to BGD, we have Stochastic Gradient Descent (SGD).

As opposed to iterating through every data within our training set and then making a step towards a local minimum, SGD works by actually picking a single data point from the training set and computing the gradient, based on this single data point.

You can probably tell that between BGD and SGD, SGD is the faster algorithm since you are computing the gradient based on a single instance of the data as opposed to the entire dataset, but at what cost.

Updates made within the parameter space during gradient descent can be noisy when using SGD. The noisiness characteristic of SGD is a result of its random nature that occurs when selecting data points from the training set to compute gradients from at each step.

To accommodate for the noisiness nature of SGD and ensure we reach an optimum parameter value, we have to iterate over the training data a certain number of times and ensure that at the beginning of the gradient descent process, the training data is shuffled.

Noise leads to ambiguous parameter values to solve the cost function, although given enough time, SGD will approach a local minimum. The noisiness and random nature of SGD are also beneficial. It’s useful for when the algorithm gets ‘stuck’ in a local minimum that isn’t the global minimum.

In comparison to BGD, SGD has the benefit of escaping local minimums and finding the global minimum due to its random and erratic nature when allocating parameter values at each step.

But BGD parameter values are closer to the global minimum and optimal in comparison to SGD. There is a trade-off between speed and optimality when faced with selecting between both variants of the gradient descent algorithms.

Mini Batch Gradient Descent

How about an approach that leverages the good characteristics of both SGD and BGD.

Mini Batch Gradient Descent computes the gradient based on randomly selected data within the training set just like SGD but does not include the entire dataset when computing gradients, so it’s also not quite BGD. You could say it’s a hybrid.

Mini Batch GD uses a small number of data when computing gradients; in comparison to BGD, it’s faster, but when compared to SGD, it’s still slower.

The advantage of Mini Batch GD to SGD is the reduction in noise within the parameter space. This means that utilizing Mini Batch GD, means optimum parameter values are more reachable.


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK