我正在尝试使用theano.tensor.shape_padaxis,如here所示。 我收到这个错误:
AttributeError:'module'对象没有属性'shape_padaxis'
我正在使用python 2.7和theano 0.7 其他一切似乎都能正常运作。
$ python
>>> import theano
>>> theano.version.version
'0.7.0'
>>> tensor = theano.tensor.tensor3()
>>> theano.tensor.shape_padright(tensor)
DimShuffle{0,1,2,x}.0
>>> theano.tensor.shape_padaxis(tensor,axis=0)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute 'shape_padaxis'
有人可以复制吗?知道它来自哪里? 感谢