我有一个theano矩阵列表(在神经网络实现中使用)。我需要对相应的元素执行元素明智的求和。
例如输入:x1 = [<TensorType(float64, matrix)>, <TensorType(float64, matrix)> , <TensorType(float64, matrix)>]
Output : <TensorType(float64, matrix)> -> which is the element wise sum of the 3 matrices.
看了几篇文章,但无法弄清楚如何继续。请指教。提前谢谢。
答案 0 :(得分:0)
你可以在theano中使用 scan 功能,你必须确保列表中的每个矩阵具有相同的形状。