We usually use TensorFlow to build a neural network. However, TensorFlow is not limited to this. Behind the scenes, TensorFlow is a tensor library with automatic differentiation capability. Hence you can easily use it to solve a numerical optimization problem with gradient descent. In this post, you will learn how TensorFlow’s automatic differentiation engine, autograd, works.
After finishing this tutorial, you will learn:
- What is autograd in TensorFlow
- How to make use of autograd and an optimizer to solve an optimization problem
Let’s get started.

Using autograd in TensorFlow to solve a regression problem
Photo by Lukas Tennie. Some rights reserved.
Overview
This tutorial is in three parts; they are:
- Autograd in TensorFlow
- Using Autograd for Polynomial Regression
- Using Autograd to Solve a Math Puzzle
Autograd in TensorFlow
In TensorFlow 2.x, you can define variables and constants as TensorFlow objects and build an expression with them. The expression is essentially a function of the variables. Hence you may derive its derivative function, i.e., the differentiation or the gradient. This feature is one of the many fundamental features in TensorFlow. The deep learning model will make use of this in the training loop.
It is easier to explain autograd with an example. In TensorFlow 2.x, you can create a constant matrix as follows:
The above prints:
This creates an integer vector (in the form of a Tensor object). This vector can work like a NumPy vector in most cases. For example, you can do x+x or 2*x, and the result is just what you would expect. TensorFlow comes with many functions for array manipulation that match NumPy, such as tf.transpose or tf.concat.
Creating variables in TensorFlow is just the same, for example:
This will print:
The operations (such as x+x and 2*x) that you can apply to Tensor objects can also be applied to variables. The only difference between variables and constants is the former allows the value to change while the latter is immutable. This distinction is important when you run a gradient tape as follows:
This prints:
What it does is the following: This defined a variable x (with value 3.6) and then created a gradient tape. While the gradient tape is working, it computes y=x*x or
Using Autograd for Polynomial Regression
How is this feature in TensorFlow helpful? Let’s consider a case where you have a polynomial in the form of
This is indeed a numerical optimization problem such that you want to minimize the difference between
Let’s consider an example. You can build a polynomial
This prints:
You may use the polynomial as a function, such as:
And this prints 8.25, for
Now you can generate a number of samples from this function using NumPy:
In the above, both X and Y are NumPy arrays of the shape (20,1), and they are related as
Now, assume you do not know what the polynomial is, except it is quadratic. And you want to recover the coefficients. Since a quadratic polynomial is in the form of
The print statement before the for loop gives three random numbers, such as:
But the one after the for loop gives you the coefficients very close to that in the polynomial:
What the above code does is the following: First, it creates a variable vector w of 3 values, namely the coefficients X. This array has 3 columns, which are the values of X using the np.hstack() function. Similarly, we build the TensorFlow constant y from the NumPy array Y.
Afterward, you use a for loop to run gradient descent in 1,000 iterations. In each iteration, you compute y_pred. Then, compare y and y_pred and find the mean square error. Next, derive the gradient, i.e., the rate of change of the mean square error with respect to the coefficients w. And based on this gradient, you use gradient descent to update w.
In essence, the above code is to find the coefficients w that minimizes the mean square error.
Putting everything together, the following is the complete code:
Using autograd to Solve a Math Puzzle
In the above, 20 samples were used, which is more than enough to fit a quadratic equation. You may use gradient descent to solve some math puzzles as well. For example, the following problem:
In other words, to find the values of
This can also be solved using autograd, as follows:
There can be multiple solutions to this problem. One solution is the following:
Which means
The above code defines the four unknowns as variables with a random initial value. Then you compute the result of the four equations and compare it to the expected answer. You then sum up the squared error and ask TensorFlow to minimize it. The minimum possible square error is zero, attained when our solution exactly fits the problem.
Note the way the gradient tape is asked to produce the gradient: You ask the gradient of sqerr respective to A, B, C, and D. Hence four gradients are found. You then apply each gradient to the respective variables in each iteration. Rather than looking for the gradient in four different calls to tape.gradient(), this is required in TensorFlow because the gradient sqerr can only be recalled once by default.
Further Reading
This section provides more resources on the topic if you are looking to go deeper.
Articles:
Summary
In this post, we demonstrated how TensorFlow’s automatic differentiation works. This is the building block for carrying out deep learning training. Specifically, you learned:
- What is automatic differentiation in TensorFlow
- How you can use gradient tape to carry out automatic differentiation
- How you can use automatic differentiation to solve an optimization problem

No comments:
Post a Comment