Zhihang Yuan

Results 8 comments of Zhihang Yuan

Hi, Yingpeng Some layer or operation is not implemented in your network which could result in this kind of KeyError. Can you provide your Network structure to check which operation...

Hi, Are you using https://github.com/Amanbhandula/AlphaPose ? The PiexelShuffle operation is not supported.

OK, I will add a feature of nn_tools. It will produce a placeholder in caffe prototxt when the operation is not supported.

Done! The not supporting operations will transferred to a Python layer in Caffe. You can implemented it by yourself.

Hi, The upsampling operation is difficult to implement here. I am try to figure it out. I have wrote a transfer function at `pytorch_to_caffe.py`, but the output of the transferred...

Hi, I have wrote a `example/testify_pytorch_to_caffe_example.py`, that will tell you which layer is wrong. I need more information about your network to find out the problem. Thank you.

Hi, andyhahaha Thank you for your remind. The question is that the Reduction Layer in Caffe only reduction along ALL "tail" axes is supported. See http://caffe.berkeleyvision.org/tutorial/layers/reduction.html. So there is no...

Oh. That is in ___add__ function, the float adding was not considered. Only the Element wise adding is considered. I have solved this problem at the latest master branch.