Results 8 comments of frash

here https://github.com/eldar/deepcut-cnn/blob/9b5de9cb70a0a440311178f26fbd6984d81e5c54/models/finetune_flickr_style/solver.prototxt#L17, I uncommented the last line to solve the issue about "Cannot use GPU in CPU-only Caffe". Actually I installed Caffe locally (without SUDO/ROOT access) on a Redhat-based cluster....

After debugging, I could run "python ./pose_demo.py image.png --out_name=prediction". But "make solver-callback" gives the following log: [ 50%] Building CXX object CMakeFiles/solver-callback.dir/src/pose/research/solver-callback.cxx.o cc1plus: error: unrecognized command line option "-std=c++11" make[3]:...

I used this command to solve the above error: cmake . -DCMAKE_C_COMPILER=gcc -DCMAKE_CXX_COMPILER=c++ -DGUROBI_ROOT_DIR=/usr/global/gurobi/gurobi651/linux64 -DGUROBI_VERSION=65 GCC and GUROBI should be compatible in this case. Finally I made it on my...

Segmentation fault after running the demo: ... I1020 11:20:43.944026 15336 net.cpp:228] conv1 does not need backward computation. I1020 11:20:43.944032 15336 net.cpp:270] This network produces output loc_pred I1020 11:20:43.944036 15336 net.cpp:270]...

Hi Eldar, Thanks for your reply. Actually I did all the instructions as you posted in README.md as well as Gurobi license. I don't know Matlab version matters or not....

Yes. I ran "dbstop if error" later inside Matlab, and the error is as follows: ... I1021 11:12:10.756536 2446 net.cpp:270] This network produces output next_pred I1021 11:12:10.756551 2446 net.cpp:270] This...

It seems fine! May it be related to copy a huge model file? ... Cleared 0 solvers and 0 stand-alone nets 52 net = caffe.Net(net_def_file, net_bin_file, 'test'); K>> net_def_file net_def_file...

I did change the file "cimgmatlab.h" as follows and it worked: ... CImg & operator=(const mxArray *matlabArray) { int nbdims = (int)mxGetNumberOfDimensions(matlabArray); mxClassID classID = mxGetClassID(matlabArray); if (nbdims>4 || !isNumericalClassID(classID))...