首页 > 解决方案 > jupyter中的张量板窗口大小

问题描述

当我在笔记本中使用它时,我想获得一个全尺寸的TensorBoard窗口。jupyter我试过这个:

%load_ext tensorboard
# tf model built and fitted with TensorBoard callback
from tensorboard import notebook
%tensorboard --logdir log
notebook.display(port = 6006, height = 1000)

但我仍然只得到默认的半尺寸窗口。如果我制作两个单元格:

%tensorboard --logdir log
## next cell
notebook.display(port = 6006, height = 1000)

我得到第一个单元格下方的半尺寸窗口和第二个单元格下方的全尺寸窗口,但无法摆脱现在多余的半尺寸窗口。

我确定有某种方法可以做到这一点,但我找不到任何可以做到这一点的示例代码。

标签: tensorflowjupyter-notebookjupytertensorboard

解决方案


推荐阅读