tf.reduce_sum函数

Posted wuxiangli

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了tf.reduce_sum函数相关的知识,希望对你有一定的参考价值。

>>> x=[[1,2,3],[23,13,213]]

>>> xx=tf.reduce_sum(x)

>>> sess.run(xx)

255

? ?

>>> x=[90,10,8]

>>> tf.reduce_sum(x)

>>> sess.run(xx)

108

以上是关于tf.reduce_sum函数的主要内容,如果未能解决你的问题,请参考以下文章