美文网首页
tf中reduce_sum和argmax

tf中reduce_sum和argmax

作者: 空谷幽兰_c411 | 来源:发表于2020-03-12 14:16 被阅读0次

    reduce_sum

    reduce_sum(value, axis=0,keepdims=False)

    x = tf.constant([[1, 1, 1,], [2, 2, 2]])
    当keepdims=False:
    当axis=0时: [3 3 3]
    当axis=1时: [3 6]
    当无axis时: 9
    当keepdims=True时: 
    当axis=0时: [[3 3 3]]
    当axis=1时: [[3] [6]]
    当无axis时: [[9]]
    

    reduce_mean同上,计算平均值

    argmax

     x = tf.constant([[1, 2, 3,], [3, 2, 1]])
    当axis=0时: [1 0 0]
    当axis=1时: [2  0]
    

    argmin同上,计算最小值对应的索引

    相关文章

      网友评论

          本文标题:tf中reduce_sum和argmax

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