【发布时间】:2019-05-02 09:08:46
【问题描述】:
我是 tensorflow 新手,想了解以下示例的每一步:
c = tf.square(a - b)
MSE = tf.reduce_mean(c)
d = tf.reduce_sum(tf.square(a-b),reduction_indices=[1])
e = tf.reduce_mean(d)
e 变量的值代表什么?我想知道数学表达式。
【问题讨论】:
-
tf.reduce_mean仅仅意味着我们取d中的值的平均值
标签: python tensorflow