1. Introduction to Neural Networks and Deep Learning
Activity 1.01: Training a Neural Network with Different Hyperparameters
Solution:
- Using your Terminal, navigate to the directory cloned from https://packt.live/2ZVyf0C and execute the following command to start TensorBoard:
$ tensorboard --logdir logs/fit
The output is as follows:
- Now, open the URL provided by TensorBoard in your browser. You should be able to see the TensorBoard
SCALARS
page: - On the TensorBoard page, click on the
SCALARS
page and enlarge theepoch_accuracy
graph. Now, move the smoothing slider to0.6
.The accuracy graph measures how accurately the network was able to guess the labels of a test set. At first, the network guesses those labels completely incorrectly. This happens because we have initialized the weights and biases of our network with random values, so...