gpt4 book ai didi

python - Theano 中的逐元素矩阵乘法

转载 作者:行者123 更新时间:2023-11-30 22:57:09 25 4
gpt4 key购买 nike

我可以看到使用 numpy 的元素明智矩阵乘法可以通过 * 运算符来完成。

print np.mat(np.ones((10,10)))*np.mat(np.ones((10,10)))

但无法让它在 theano 下工作。我尝试过的代码是

x = T.dmatrix('x')
y = T.dmatrix('y')
z = x * y
f1 = theano.function([x, y], z)

print f1(np.mat(np.ones((10,10))),np.mat(np.ones((10,10))))

最佳答案

如果我尝试以下操作(这基本上是您的代码):

import theano
import theano.tensor as T

import numpy as np

x = T.dmatrix('x')
y = T.dmatrix('y')
z = x * y
f1 = theano.function([x, y], z)

print f1(np.mat(np.ones((10,10))),np.mat(np.ones((10,10))))

我得到以下信息:

[[ 1.  1.  1.  1.  1.  1.  1.  1.  1.  1.]
[ 1. 1. 1. 1. 1. 1. 1. 1. 1. 1.]
[ 1. 1. 1. 1. 1. 1. 1. 1. 1. 1.]
[ 1. 1. 1. 1. 1. 1. 1. 1. 1. 1.]
[ 1. 1. 1. 1. 1. 1. 1. 1. 1. 1.]
[ 1. 1. 1. 1. 1. 1. 1. 1. 1. 1.]
[ 1. 1. 1. 1. 1. 1. 1. 1. 1. 1.]
[ 1. 1. 1. 1. 1. 1. 1. 1. 1. 1.]
[ 1. 1. 1. 1. 1. 1. 1. 1. 1. 1.]
[ 1. 1. 1. 1. 1. 1. 1. 1. 1. 1.]]

所以,它对我有用。

关于python - Theano 中的逐元素矩阵乘法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36814291/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com