Playground
Compare randomly initialized weights with fixed weights by interacting with the hands-on exercise.
We'll cover the following...
Revision
Before we move on, let’s practice with the code for a little while. That’s optional, but it’s a good way to revise these concepts.
Go through all the codes which we have covered in this chapter by launching the below app:
Please login to launch live app!
Hands-on challenge
In Fearful Symmetry, we learned that we should not initialize all the neural network’s weights
to the same value. We may easily notice what happens if we ignore that advice. We can use NumPy’s zeros()
function to initialize all the weights
to . For example, ...