1

我尝试了下面的代码:

x=T.dvector('x')
y=T.dvector('y')
input=[x,y]
s=T.sum(x**2+y**2)
f=theano.gradient.hessian(s,wrt=input)
h=function(input,f)

然后我使用以下真实值运行它

x=[1,2]
y=[1,2]
h([x,y]

然后我遇到了以下错误

TypeError: ('Bad input argument to theano function with name "<ipython-input-115-32fd257c46ad>:7"  at index 0(0-based)', 'Wrong number of dimensions: expected 1, got 2 with shape (2L, 2L).')

我是 python 新手,正在探索 Theano 来构建神经网络。

4

1 回答 1

1

h是一个接受两个参数的函数。你给它一个参数,它是一个包含两个元素的列表。

尝试更改h([x,y])h(x,y).

于 2015-05-28T07:53:02.103 回答