Model Optimization

Introduction

Machine learning models learn by updating it's parameters (weights and biases) towards the direction of the correct classification.

Basic structure of a learning model

On the picture bellow we will show the basic blocks of a machine learning model

On this picture we can detect the following components 1. Training dataset: Basically a high speed disk containing your training data 2. Batch of samples: A list of pairs (X,Y), consisting on inputs, expected outputs, for example X can be a image and Y the label "cat" 3. Parameters: Set of parameters used by your model layers, to map X to Y 4. Model: Set of computing layers that transform an input X and weights W, into a score (probable Y) 5. Loss function: Responsible to say how far our score is from the ideal response Y, the output of the loss function is a scalar. Another way is also to consider that the loss function say how bad is your current set of parameters W.

What we will do?

Basically we need an algorithm that will change our weight and biases, in order to minimize our loss function.

The Loss function

You can imagine the loss function here as a place with some mountains, and your objective is to find it's vale (lowest) place. Your only instrument is the gadget that returns your altitude (loss). You need to find out which direction to take.

Here we can also observe two things:

  • You have more than one vale (Local minima)

  • Depending where you landed you probably find one instead of the other (Importance of weight initialization)

Which direction to take (Gradient descent)

Simple Example

To illustrate the gradient descent method let's follow a simple case in 1D. Consider the initial weight (-1.5)

On Matlab

We can observe that after we use calculus to find the derivative of the loss function, we just needed to evaluate it with the current weight. After that we just take the evaluated value from the current weight.

Learning rate too big

Using a big learning rate can accelerate convergence, but could also make the gradient descent oscillate and even diverge.

Numerical Gradient

Slow method to evaluate the gradient, but we can use it to verify if our code is right

Mini Batch Gradient Descent

Instead of running through all the training set to calculate the loss, then do gradient descent, we can do it in small (batch) portions. This leads to similar results while computing faster. Normally the mini-batch size is dependent on the size of GPU memory.

If you analyze your loss decay over time the full-batch version is less noisy (because we are choosing the best possible direction to descend each time we update weights) but it is much longer and difficult to compute.

At the other extreme if your mini-batch size goes to 1, which means you compute the gradient descent for each sample. In this case we have what is called Stochastic Gradient Descent. This is relatively less common to see because in practice due to vectorized code optimizations it can be computationally much more efficient to evaluate the gradient for 100 examples, than the gradient for one example 100 times. Also with using a bigger batch size we are more likely to be estimating the true gradient.

Effects of learning rate on loss

Actually what people do is to choose a high (but not so high) learning rate, then decay with time.

Here are 2 ways to decay the learning rate with time while training:

How learning rate can adjust with batch size

An important thing to note is that learning rate scale proportionaly with batch size so if we increase our batch size by 2x we can double our learning rate.

This is because as the size of the batch increases we become more confident that the gradient we calculate is going in the correct direction for optimisation. As we are more confident the direction is correct we can safely take bigger steps in that direction without fear we will start to diverge.

Going the other way if our batch size is smaller we have to reduce learning rate as we arent completely confident in the direction of descent as we have less samples to work with so we must take small steps so any bad gradient updates dont take us too far off the correct path.

Other algorithms

The gradient descent is the simplest idea to do model optimization. There are a few other nice algorithms to try when thinking about model optimization that are all based on gradient descent but with some extra little things added:

  • Stochastic Gradient Descent (SGD)

  • Stochastic Gradient Descent with momentum (Very popular)

  • Nestorov's accelerated gradient (NAG)

  • Adaptive graident (AdaGrad)

  • Adam (Very good because you need to take less care about learning rate)

  • RMSprop

Below is an animation showing how fast some of these different optimisers reacher the minimum of a function.

Next Chapter

Now what we need is a way to get the gradient vector of our model, next chapter we will talk about back-propagation.

Last updated