tensorflow.reduce_sum 的 theano 等价物是什么?
What is the theano equivalent of tensorflow.reduce_sum?
通常我会在 Tensorflow 中查找与 Theano 等价的东西,它马上就会出现。但是对于 reduce_sum
,什么也没有出现。有人可以告诉我如何在 Theano 中做 reduce_sum
吗?
from theano import tensor as T
x = ...
T.sum(x)
通常我会在 Tensorflow 中查找与 Theano 等价的东西,它马上就会出现。但是对于 reduce_sum
,什么也没有出现。有人可以告诉我如何在 Theano 中做 reduce_sum
吗?
from theano import tensor as T
x = ...
T.sum(x)