使用tf.reduce_sum()的不期望的输出

时间:2019-04-16 07:17:46

标签: pandas numpy tensorflow tensorboard

使用tensorflow reduce_sum但获得不期望的输出。 我正在尝试计算以下内容:

x = tf.constant([[1,1,1],[1,1,1]])
tf.reduce_sum(x,0)



expected output = [2, 2, 2]

actual output = <tf.Tensor 'Sum:0' shape=() dtype=int32>

1 个答案:

答案 0 :(得分:1)

如果要显示,则需要参加会话并使用eval()

import tensorflow as tf
sess = tf.InteractiveSession()

x = tf.constant([[1,1,1],[1,1,1]])
tf.reduce_sum(x,0).eval()