问题描述
我想使用最新的 tensorflow 2.0.0a0 在 jupyter 中运行 tensorboard.使用 tensorboard 版本 1.13.1 和 python 3.6.
I want to run tensorboard in jupyter using the latest tensorflow 2.0.0a0. With the tensorboard version 1.13.1, and python 3.6.
使用
...%tensorboard --logdir {logs_base_dir}
我收到错误:
UsageError: Line magic function %tensorboard not found
您知道可能是什么问题吗?似乎所有版本都是最新的,命令似乎也正确.
Do you have an idea what the problem could be? It seems that all versions are up to date and the command seems correct too.
谢谢
推荐答案
UPDATE
对于较新的 TF 版本(tensorflow>=1.14.0
& tensorflow != 2.0.0a0
- 比 TF2.0-alpha 新)加载这样的扩展
For newer TF versions (tensorflow>=1.14.0
& tensorflow != 2.0.0a0
- newer than TF2.0-alpha) load the extension like this
%load_ext tensorboard
旧答案
需要先加载扩展:
%load_ext tensorboard.notebook
%tensorboard --logdir {logs_base_dir}
这篇关于在 jupyter 中找不到 Tensorboard 作为魔法函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!