Visualizing Training
Visualize training of neural networks.
We'll cover the following...
When we trained networks in Make Your Own Neural Network, we didn’t really have a way of seeing the progress of that training. We did measure how well the network performed after training, but we didn’t get a sense of how smoothly the training itself had gone, or a sense of whether further training would be helpful.
One way to keep track of training is to monitor the loss.
Track the loss value during training
We could do this by keeping ...