标签: tensorflow sum theano
通常我在Tensorflow中查找Theano相当于某些东西,它就会出现。但对于reduce_sum,没有任何表现。有人可以告诉我如何在Theano中做reduce_sum吗?
reduce_sum
答案 0 :(得分:1)
使用theano.tensor.sum():
theano.tensor.sum()
from theano import tensor as T x = ... T.sum(x)