报错:class BeholderHook(tf.estimator.SessionRunHook):AttributeError: module 'tensorflow.python.estimator.estimator_lib' has no attribute 'SessionRunHook' 检查tensorboard的安装情况:pip3 list 发现tensorboard与tensorflow的版本不一致:卸载 pip3 uninstall tensorboard:重新安装 pip…
按照网上的教程,我无法正常启动tensorboard,全过程没有报错,但是打开tensorboard显示No dashboards are active for the current data set.这就很奔溃了.为此,找了很多博客,特地总结一番. 本文包含TensorBoard的使用及启动方法,以及针对该问题的一些解决方案. TensorBoard的使用及启动方法 先看一个例子,代码如下: import tensorflow as tf # 定义一个简单的计算图,实现向量加法的操作. in…