在Caffe中实现“转置”图层时出错

时间:2017-04-18 23:48:27

标签: machine-learning neural-network deep-learning caffe pycaffe

我正在尝试使用Python层在Caffe中实现转置函数。 下面是相同的代码。

但是,在var d = document.getElementsByTagName("div")[0]; for (i=0, max=4; i <= max; i++) { if ( d.children[i].textContent.trim() == ""){ d.children[i].style.display="None"; } } 方法抛出boost::python::error_already_set实例后,它会抛出错误“终止。

有人可以对我做错了吗?

Reshape()

谢谢你, Vijetha。

1 个答案:

答案 0 :(得分:1)

我认为你reshape错误 尝试:

def reshape(self, bottom, top):
  top[0].reshape(bottom[0].data.shape[1], bottom[0].data.shape[0])
shape的{​​{1}}个参数作为tupple而是作为单独的参数提供。