Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.
Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.
Path: blob/main/deep-learning-specialization/course-2-deep-neural-network/Initialization.ipynb
Views: 34198
Initialization
Welcome to the first assignment of Improving Deep Neural Networks!
Training your neural network requires specifying an initial value of the weights. A well-chosen initialization method helps the learning process.
If you completed the previous course of this specialization, you probably followed the instructions for weight initialization, and seen that it's worked pretty well so far. But how do you choose the initialization for a new neural network? In this notebook, you'll try out a few different initializations, including random, zeros, and He initialization, and see how each leads to different results.
A well-chosen initialization can:
Speed up the convergence of gradient descent
Increase the odds of gradient descent converging to a lower training (and generalization) error
Let's get started!
Important Note on Submission to the AutoGrader
Before submitting your assignment to the AutoGrader, please make sure you are not doing the following:
You have not added any extra
print
statement(s) in the assignment.You have not added any extra code cell(s) in the assignment.
You have not changed any of the function parameters.
You are not using any global variables inside your graded exercises. Unless specifically instructed to do so, please refrain from it and use the local variables instead.
You are not changing the assignment code where it is not required, like creating extra variables.
If you do any of the following, you will get something like, Grader not found
(or similarly unexpected) error upon submitting your assignment. Before asking for help/debugging the errors in your assignment, check for these first. If this is the case, and you don't remember the changes you have made, you can get a fresh copy of the assignment by following these instructions.
For this classifier, you want to separate the blue dots from the red dots.
You'll use a 3-layer neural network (already implemented for you). These are the initialization methods you'll experiment with:
Zeros initialization -- setting
initialization = "zeros"
in the input argument.Random initialization -- setting
initialization = "random"
in the input argument. This initializes the weights to large random values.He initialization -- setting
initialization = "he"
in the input argument. This initializes the weights to random values scaled according to a paper by He et al., 2015.
Instructions: Instructions: Read over the code below, and run it. In the next part, you'll implement the three initialization methods that this model()
calls.
4 - Zero Initialization
There are two types of parameters to initialize in a neural network:
the weight matrices
the bias vectors
Exercise 1 - initialize_parameters_zeros
Implement the following function to initialize all parameters to zeros. You'll see later that this does not work well since it fails to "break symmetry," but try it anyway and see what happens. Use np.zeros((..,..))
with the correct shapes.
W1 = [[0. 0. 0.]
[0. 0. 0.]]
b1 = [[0.]
[0.]]
W2 = [[0. 0.]]
b2 = [[0.]]
All tests passed.
Run the following code to train your model on 15,000 iterations using zeros initialization.
The performance is terrible, the cost doesn't decrease, and the algorithm performs no better than random guessing. Why? Take a look at the details of the predictions and the decision boundary:
Note: For sake of simplicity calculations below are done using only one example at a time.
Since the weights and biases are zero, multiplying by the weights creates the zero vector which gives 0 when the activation function is ReLU. As z = 0
At the classification layer, where the activation function is sigmoid you then get (for either input):
As for every example you are getting a 0.5 chance of it being true our cost function becomes helpless in adjusting the weights.
Your loss function:
For y=1
, y_pred=0.5
it becomes:
For y=0
, y_pred=0.5
it becomes:
As you can see with the prediction being 0.5 whether the actual (y
) value is 1 or 0 you get the same loss value for both, so none of the weights get adjusted and you are stuck with the same old value of the weights.
This is why you can see that the model is predicting 0 for every example! No wonder it's doing so badly.
In general, initializing all the weights to zero results in the network failing to break symmetry. This means that every neuron in each layer will learn the same thing, so you might as well be training a neural network with for every layer. This way, the network is no more powerful than a linear classifier like logistic regression.
What you should remember:
The weights should be initialized randomly to break symmetry.
However, it's okay to initialize the biases to zeros. Symmetry is still broken so long as is initialized randomly.
5 - Random Initialization
To break symmetry, initialize the weights randomly. Following random initialization, each neuron can then proceed to learn a different function of its inputs. In this exercise, you'll see what happens when the weights are initialized randomly, but to very large values.
Exercise 2 - initialize_parameters_random
Implement the following function to initialize your weights to large random values (scaled by *10) and your biases to zeros. Use np.random.randn(..,..) * 10
for weights and np.zeros((.., ..))
for biases. You're using a fixed np.random.seed(..)
to make sure your "random" weights match ours, so don't worry if running your code several times always gives you the same initial values for the parameters.
W1 = [[ 17.88628473 4.36509851 0.96497468]
[-18.63492703 -2.77388203 -3.54758979]]
b1 = [[0.]
[0.]]
W2 = [[-0.82741481 -6.27000677]]
b2 = [[0.]]
All tests passed.
Run the following code to train your model on 15,000 iterations using random initialization.
If you see "inf" as the cost after the iteration 0, this is because of numerical roundoff. A more numerically sophisticated implementation would fix this, but for the purposes of this notebook, it isn't really worth worrying about.
In any case, you've now broken the symmetry, and this gives noticeably better accuracy than before. The model is no longer outputting all 0s. Progress!
Observations:
The cost starts very high. This is because with large random-valued weights, the last activation (sigmoid) outputs results that are very close to 0 or 1 for some examples, and when it gets that example wrong it incurs a very high loss for that example. Indeed, when , the loss goes to infinity.
Poor initialization can lead to vanishing/exploding gradients, which also slows down the optimization algorithm.
If you train this network longer you will see better results, but initializing with overly large random numbers slows down the optimization.
In summary:
Initializing weights to very large random values doesn't work well.
Initializing with small random values should do better. The important question is, how small should be these random values be? Let's find out up next!
Optional Read:
The main difference between Gaussian variable (numpy.random.randn()
) and uniform random variable is the distribution of the generated random numbers:
numpy.random.rand() produces numbers in a uniform distribution.
and numpy.random.randn() produces numbers in a normal distribution.
When used for weight initialization, randn() helps most the weights to Avoid being close to the extremes, allocating most of them in the center of the range.
An intuitive way to see it is, for example, if you take the sigmoid() activation function.
You’ll remember that the slope near 0 or near 1 is extremely small, so the weights near those extremes will converge much more slowly to the solution, and having most of them near the center will speed the convergence.
6 - He Initialization
Finally, try "He Initialization"; this is named for the first author of He et al., 2015. (If you have heard of "Xavier initialization", this is similar except Xavier initialization uses a scaling factor for the weights of sqrt(1./layers_dims[l-1])
where He initialization would use sqrt(2./layers_dims[l-1])
.)
Exercise 3 - initialize_parameters_he
Implement the following function to initialize your parameters with He initialization. This function is similar to the previous initialize_parameters_random(...)
. The only difference is that instead of multiplying np.random.randn(..,..)
by 10, you will multiply it by , which is what He initialization recommends for layers with a ReLU activation.
W1 = [[ 1.78862847 0.43650985]
[ 0.09649747 -1.8634927 ]
[-0.2773882 -0.35475898]
[-0.08274148 -0.62700068]]
b1 = [[0.]
[0.]
[0.]
[0.]]
W2 = [[-0.03098412 -0.33744411 -0.92904268 0.62552248]]
b2 = [[0.]]
All tests passed.
Expected output
Run the following code to train your model on 15,000 iterations using He initialization.
Observations:
The model with He initialization separates the blue and the red dots very well in a small number of iterations.
You've tried three different types of initializations. For the same number of iterations and same hyperparameters, the comparison is:
Model | Train accuracy | Problem/Comment | 3-layer NN with zeros initialization | 50% | fails to break symmetry |
3-layer NN with large random initialization | 83% | too large weights |
3-layer NN with He initialization | 99% | recommended method |
Congratulations! You've completed this notebook on Initialization.
Here's a quick recap of the main takeaways:
Different initializations lead to very different results
Random initialization is used to break symmetry and make sure different hidden units can learn different things
Resist initializing to values that are too large!
He initialization works well for networks with ReLU activations