tf.summary使用过程中报错: tags and values not the same shape

近来使用tensorflow中的tf.summary模块进行调试,用来主程序运行时打印想要看的张量的形状shape, 以及值value.

虽然使用的tensorflow版本1.15.5, 即使使用tf.enable_eager_execution()也无法看到张量的实际各维的长度。

tf.summary使用过程中报错: tags and values not the same shape

 

 

涉及到tf.summary部分的代码

edges_0_shape = tf.Print(tf.shape(edges_0), [tf.shape(edges_0)])#注释:edges_0是一个二维tensor

tf.summary.scalar('shape_edges_0', edges_0_shape)

tf.summary使用过程中报错: tags and values not the same shape

 

报错信息:

tensorflow.python.framework.errors_impl.InvalidArgumentError: tags and values not the same shape: [] != [2] 

tf.summary使用过程中报错: tags and values not the same shape

 

 

原因解释:edges_0是一个tensor,是一个二维tensor,所以tf.shape(edges_0)返回值是一个[100 50]这样的一维tensor,所以应当使用tf.summary.tensor_summary(),而不是tf.summary.scalar()

修改后:

tf.summary使用过程中报错: tags and values not the same shape

 

主程序运行过程中,打印出来如下:

tf.summary使用过程中报错: tags and values not the same shape

 

上一篇:bzoj 4034 [HAOI2015]树上操作 入栈出栈序+线段树 / 树剖 维护到根距离和


下一篇:mqttx测试工具安装教程