美文网首页
tf.reduce_mean()

tf.reduce_mean()

作者: Thinkando | 来源:发表于2018-11-24 11:49 被阅读5次
    x = tf.constant([[1., 1.], [2., 2.]])
    tf.reduce_mean(x)  # 1.5
    tf.reduce_mean(x, 0)  # [1.5, 1.5]
    tf.reduce_mean(x, 1)  # [1.,  2.]
    

    相关文章

      网友评论

          本文标题:tf.reduce_mean()

          本文链接:https://www.haomeiwen.com/subject/qwweqqtx.html