tensorflow.reduce_sum的theano等价物是什么?

时间:2018-04-26 07:10:44

标签: tensorflow sum theano

通常我在Tensorflow中查找Theano相当于某些东西,它就会出现。但对于reduce_sum,没有任何表现。有人可以告诉我如何在Theano中做reduce_sum吗?

1 个答案:

答案 0 :(得分:1)

使用theano.tensor.sum()

from theano import tensor as T

x = ...
T.sum(x)