Hi all,
I would like to have a plot of multiple histograms, that I log over time, like in the figure attached. They are the activations of units in a layer, thus ‘wandb.watch()’ doesn’t work, as it is only for gradients and parameters, right?
I’m using the standard histogram code, and it shows the latest version of the histogram, not all of them over time.
“”“”
def hook(model, input, output):
data = [[x.item()] for x in output.flatten()]
table = wandb.Table(data=data, columns=[“activations”])
wandb.log({f’layer_hist’: wandb.plot.histogram(table, “activations”,
title=f"activations")})
“”"
Is there a way to get the histogram over time plot?
Thanks, Carlos