TensorBoard - 如何显示所有直方图?

TensorBoard - how to show all histograms?

我的 ResNet 记录了 200 多个直方图,我必须单独单击它们才能查看 - 下面的示例。每次重复这很不方便 - 有没有更快的选择(例如按钮,命令行参数)?

引用 TF 合作者的话 N. Felt:

There's no automatic way to expand all the histogram panes at once, no - the expandable pane grouping logic assumes that related data would be grouped by a filename-style prefix (so e.g. if the summary names were batch_norm/1, batch_norm/2 it would put them in a batch_norm pane for you, but it doesn't do this for underscore prefixes).

As a workaround you could specify a tag filter of .* (it's a regex that matches all tags) so that they all appear under the single search results pane at the top. This will show as many histograms as your configured pagination limit, and you can set that in the gear icon settings menu to as high as you want, although TensorBoard may get pretty slow if you show 200 at once.


我测试过,它可以工作 - 速度很慢 最初 ,但还不错 post - 初始负载。