-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Visualizing specific layers Tensorboard Callback #3207
Copy link
Copy link
Closed
Labels
Description
Keras's Tensorboard callback has a write_images and a histogram_freq argument that allows the weights and activations to be saved to Tensorboard to visualize during training. This is helpful for visualizing training in real time.
The issue is: this saves the information for every layer and makes Tensorboard very messy to read, especially if I have logged other images to Tensorboard. This can be seen in the images below:
A lot of this logged information is redundant.
Is there any way to make the weight distribution and activation visualizations more organized so that they don't fill up my whole screen?
Is there any way to only visualize certain layers using the Keras callback? (i.e. I don't want to visualize the BatchNorm layers)
Reactions are currently unavailable

