使用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>
答案 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()