I would like to know how to understand the tensor flow graphs / Histograms Created. The code for this can be found here. This graph is easy to understand. Accuracy and loss are understandable.
Accuracy- Accuracy of current state of network for given train data. Higher is better Accuracy/Validation - Accuracy of current state of network for given Validation data which is not seen by network before. Higher is better Loss- Loss of network on train data. Lower is better. Loss/Valadation - Loss of network on test data. Lower is better. If loss increases it a sign of over-fitting. Conv2d/L2-Loss - Loss of particular layer wrt train data.

Basically, what does a graph mean, and how can I use it to understand my network, and, if possible, what changes can I make to improve it.
How to interpret the histograms?

source share