How to set range of histograms in TensorBoard

Hello, everyone.
I’d like to visualize the weights in a network by using TensorBoard.

But, as you can see this picture, analysis is difficult because the x-axis range of each histogram is different.

How can I fix the x-axis range of each histogram?

Hi @sanghyukkim, while creating logdir you can use tf.summary.scalar() function and for step argument you can pass the values for your x axis scale. please refer to this gist for working code example. Thank You.

1 Like