Tensorboard add_histogram

In the bin option of tensor-board’s add_histogram method. I see the options such as “tensorflow,auto,fd”. Can someone how these options work ? (Except auto)

The bins arguments is passed in this line of code to np.histogram if I’m not mistaken, which then uses this input argument in np.histogram_bin_edges. If tensorboard is used the bins will be explicitly created here and assigned here.

1 Like