美文网首页Tensorflow
TensorFlow学习笔记(1)tf.reduce_mean,

TensorFlow学习笔记(1)tf.reduce_mean,

作者: 谢昆明 | 来源:发表于2018-11-09 08:23 被阅读0次
    import tensorflow as tf
    import numpy as np

    #  Computes the mean of elements across dimensions of a tensor. (deprecated arguments)
    
    #  tf.reduce_mean(
    #      input_tensor,
    #      axis=None,
    #      keepdims=None,
    #      name=None,
    #      reduction_indices=None,
    #      keep_dims=None
    #      )
    
    c = np.array([[3.,4], [5.,6], [6.,7]])
    
    step = tf.reduce_mean(c, 1)
    with tf.Session() as sess:
        print(sess.run(step))

输出

[3.5 5.5 6.5]

也就是
[3.,4]的平均值是3.5,类推

用例对应的源代码,觉得有帮助可以Star

相关文章

网友评论

    本文标题:TensorFlow学习笔记(1)tf.reduce_mean,

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