In this segment, you shall start with the basics of the gradient descent algorithm and the different problems faced in it and then move on to the different optimization techniques that are used in most of the industry level problems in the segments that follow.
You have already been introduced to the gradient descent algorithm in the previous sessions. Let us reiterate it before moving ahead.
The gradient descent is an optimisation algorithm used to find the minimum value of a function. The basic idea is to use the gradient of the function to find the direction of the steepest descent, i.e., the direction in which the value of the function decreases most rapidly, and move towards the minima iteratively according to the following rule:
wnew=wold−α.∂L∂w
bnew=bold−α.∂L∂b
Where α is the learning rate which determines how quickly or slowly the model learns and attains the minimum value.
So far you have been dealing with minima of the given curve but there are various different points on a curve that you might encounter on your search for the minima. Let us learn about them in the upcoming video:
In the above video, you learnt about critical points which can be points of minima and maxima or saddle points. Let us understand these points in a bit more detail.
Critical points in a curve are the points where the first derivative is equal to zero. They can be further divided into three points:
- Maxima: The point where the function attains the maximum value. Take a look at the point of maxima as shown in the image below:
- Minima: The point where the function attains the minimum value. Take a look at the point of minima as shown in the image below:
- Saddle Point: The point where the function has minimum value with respect to one direction and maximum value with respect to the other direction. Take a look at the saddle point as shown in the image below. If you move along the horizontal axis from -4 to 4, you will conclude that the critical point (0,0) is a minima. And on the other hand, if you move along the other axis from -2 to 2, you’ll conclude that the same critical point (0,0) is a maxima. Such a critical point is known as a Saddle Point. It got the name Saddle point because it looks very similar to horse saddle.
There is something interesting to note here. What do you think is more beneficial for a learning algorithm like gradient descent, finding a local minima or a saddle point? The answer is saddle point as in the case of a saddle point, you at least have one direction where you can move towards the global minima. But, if you reach a local minima, you can get stuck in that minima and getting out if requires some modifications to the simple Stochastic Gradient Descent, which you’ll see in the next few segments.
You also saw that the points of maxima and minima can be either local or global. A local maxima/minima are the maximum/minimum value in a certain locality. However, global maxima/minima are the maximum/minimum value or the entire curve.
Let us say you have a function that can be denoted by f(x,y). A point will be a critical point if the following holds true:
fx=∂f(x,y)∂x=0 and fy=∂f(x,y)∂y=0
In order to compute maxima, minima and saddle points, you will require the following:
H=fxx.fyy−f2xy
Where,
fxx(x,y)=∂(∂f(x,y)∂x)∂x,
fyy(x,y)=∂(∂f(x,y)∂y)∂y, and
fxy(x,y)=∂(∂f(x,y)∂y)∂x
To compute the points, the following must stand true:
- The point x will be a point of maxima if H>0 and f′′xx(x,y)=∂(∂f(x,y)∂x)∂x<0.
- The point x will be the point of minima if H>0 and f′′xx(x,y)=∂(∂f(x,y)∂x)∂x>0.
- The point will be a saddle point if H<0
Now that you have an understanding of these points, let us solve them in the next video.
Let us revise the equation that you solved in the video above. You are required to compute all the possible maxima, minima and saddle points in the given equation:
f(x,y)=3×3+3y3−6xy
Let us start by computing fx, fy, fxx, fyy, fxy as shown below:
- fx=∂f∂x=9×2−6y
- fy=∂f∂x=9y2−6x
Recall that for a critical point both fx and fy should be equal to zero. Let us substitute these equations equal to zero as shown below:
9×2−6y=0
Therefore, y=3×22
and 9y2−6x=0
Substituting the value of y obtained above, you get: 9(3×22)2−6x=0
On solving you will get: 27×44−2x=0
27×4−8x=0
x(27×3−8)=0
(x−0)((3x)3−23)=0
You will obtain the following values of x: x=0,x=23
The corresponding y values: y=0,y=23 respectively.
Therefore, you have the two critical points i.e., (0,0) and (23,23).
Now, let us compute the value of H and find the points of maxima, minima and saddle points:
fxx(x,y)=∂(∂f(x,y)∂x)∂x=∂(∂(3×3+3y3−6xy)∂x)∂x=∂(9×2−6y)∂x=18x
fyy(x,y)=∂(∂f(x,y)∂y)∂y=∂(∂(3×3+3y3−6xy)∂y)∂y=∂(9y2−6x)∂x=18y
fxy(x,y)=∂(∂f(x,y)∂x)∂y=∂(∂(3×3+3y3−6xy)∂x)∂y=∂(9×2−6y)∂y=6
Substitute the values of fxx, fyy and fxy in the formula to compute H as follows:
H=fxx∗fyy−f2xy
H=18x∗18y−(6)2=18x∗18y−36
Let us check whether the critical points are maxima/minima or saddle points as shown below:
- For the critical point (0,0), you will get the following:
H(0,0)=(18∗0)∗(18∗0)−36=−36<0
According to the rules you learnt above, if H<0, this means (0,0) is a saddle point.
- For the critical point (23,23), you will get the following value:
H(0,0)=(18∗23)∗(18∗23)−36=144−36=108>0
According to the rules you learnt above, if H>0, this means (23,23) is either a point of maxima or minima.
- You can find whether it is a point of maxima or minima as follows:
f′′xx(x,y)=∂(∂f(x,y)∂x)∂x=∂(∂f(3×3+3y3−6xy)∂x)∂x=18x=18∗23=12>0
Since the result is greater than zero, it is a point of minima.
You have finally obtained the results for the equation f(x,y)=3×3+3y3−6xy. Let us conclude the results.
- (0,0) is a saddle point.
- (23,23) is the point of minima.
In the upcoming segment, you will learn about the first gradient descent optimiser i.e., momentum-based methods.
Report an error