我一直在尝试研究tensorboard(来自tensorflow(从github分叉,也使用最新版本)并且每当我使用'标量'或'直方图'函数时都会出现上述错误。 为什么标量函数指向tensorflow.python.summary.summary? (不应该是tensorflow.python.summary吗?)如果有人可以帮忙的话会很棒!我在这里附上代码:
import tensorflow as tf
x = tf.Variable(tf.random_normal(5,5))
tf.summary.scalar('input', x)
输出是:
Traceback (most recent call last):
File "tensorboardetest.py", line 4, in <module>
tf.summary.scalar('input', x)
AttributeError: module 'tensorflow.python.summary.summary' has no attribute 'scalar'
答案 0 :(得分:1)
您实际上并未使用最新版本的TensorFlow。 :)