Google Colab启动TensorFlow出现No dashboards are active for the current data set.

我在Colab上面跟着federated_learning_for_image_classification教程做相关的东西,在用到tensorbord的时候,使用如下代码:

#@test {"skip":true}
#%load_ext tensorboard
%tensorboard --logdir /tmp/logs/scalars/ --port=0

然后出现的是 No dashboards are active for the current data set
Google Colab启动TensorFlow出现No dashboards are active for the current data set._第1张图片
我后来直接把官方的相关的这一片代码贴上去,发现又行了,emmm。。。原因是我把前面一段代码的Plot the relevant scalar metrics with the same summary writer.这部分的#@test{“skip”:true}给删了,我以为是无关紧要的东西,,,现在看来我真是个傻逼Google Colab启动TensorFlow出现No dashboards are active for the current data set._第2张图片
之前在启动tensorboard的时候我也是把#@test这个东西给省略了,不过改的时候我还加了一句%load_ext tensorboard然后出现了UsageError: Line magic function %tensorboard not found.
在这里插入图片描述
在这里插入图片描述
后来我加上去就没看到错了。
我是一个不合格的学生,看不懂就算了,,,照着写都能整出一堆毛病,ball ball毕业设计眷顾我。

你可能感兴趣的:(改错)