I would like to know how to make sense of the tensor flow graphs/Histograms generated. The code for this can be found here. This graph is easy to understand Accuracy and loss are straight forward to understand.
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's a sign of over-fitting.
Conv2d/L2-Loss - Loss of particular layer wrt train data.
Basically what the graph signifies and how i could use it to understand my network and if possible what changes i can make to improve it.