Antonio Pertusa

Results 8 comments of Antonio Pertusa

Ishant, thanks for this code, I've used it as a basis to develop a MXNet to Caffe converter: https://github.com/pertusa/MXNetToCaffeConverter

It may be because Atlas is a C library (not C++). You can replace it by another library, or try to add this at the beginning of mxnet_my_c_predict_api.h: extern "C"...

It seems that boost-python needs to be linked. Try to add -lboost_python to the CAFFE_DEPENDENCES in the Makefile, and please let me know if it works to update it.

Ok, it seems from your Makefile that boost was not installed using apt-get or other package managers, but directly downloaded to a folder boost_1_62_0 and compiled there. The most straightforward...

The Caffe Makefile has the following definition: PYTHON_LIBRARIES ?= boost_python python2.7 So I would try to add -lpython2.7 (or the version you have) to the CAFFE_DEPENDENCES. If you can't find...

The mean values used are not those from GoogleNet, but [117, 117, 117].

In Caffe you need to generate caffe.pb.h manually using protoc. In the directory you installed Caffe: protoc src/caffe/proto/caffe.proto --cpp_out=. mkdir include/caffe/proto mv src/caffe/proto/caffe.pb.h include/caffe/proto

Uri, what errors do you get specifically?