facebookarchive / caffe2

Caffe2 is a lightweight, modular, and scalable deep learning framework.
https://caffe2.ai
Apache License 2.0
8.42k stars 1.95k forks source link

when convert caffe model to caffe2 model,how to do for unsample layer with group>1? #1379

Open GeorgeBohw opened 6 years ago

GeorgeBohw commented 6 years ago

i use the following command: python -m caffe2.python.caffe_translator deploy.prototxt pretrained.caffemodel

then error: Translator currently does not support group deconvolution any other solution?

issuehsu commented 6 years ago

I see the same error when translating SSH caffe model.

The translator does not support group deconv. if param.group > 1: raise NotImplementedError( "Translator currently does not support group deconvolution." )

Will this feature be supported in the near future? Or any alternative to support SSH in ONNX now? Thanks!

vishal83 commented 6 years ago

I am also seeing this exact error. Were you all able to work around it?