我试图将共享的theano tensor变量的值存储到numpy变量中。
xyz是一个numpy变量 和W是共享的theano张量变量
尝试使用eval
xyz = self.W.eval()
for i in range(0,xyz.shape[0]):
for j in range(0,xyz.shape[1]):
#print(xyz[i][j])
#print(i)
xyz_temp[i][j]=(xyz[i][j]*10)/10 // just trying to do some random operation on the values
但它返回错误
AttributeError:' numpy.ndarray'对象没有属性' eval'