I have successfully installed caffe. all tests ran fine. when i try to train an example(https://github.com/tenstep/DeepModel) using hdf5 data i get error. I read in some forum that it relates to glog.
*** Aborted at 1465829389 (unix time) try "date -d @1465829389" if you are using GNU date ***
PC: @ 0x7fb5bd59d754 (unknown)
*** SIGSEGV (@0xc0) received by PID 17515 (TID 0x7fb5bf7ae780) from PID 192; stack trace: ***
@ 0x7fb5bd57fd40 (unknown)
@ 0x7fb5bd59d754 (unknown)
@ 0x7fb5bd5a6147 (unknown)
@ 0x7fb5befc9cd9 caffe::DeepHandModelLayer<>::LayerSetUp()
@ 0x7fb5bf049515 caffe::Net<>::Init()
@ 0x7fb5bf04a3b5 caffe::Net<>::Net()
@ 0x7fb5befd472a caffe::Solver<>::InitTrainNet()
@ 0x7fb5befd593c caffe::Solver<>::Init()
@ 0x7fb5befd5c6a caffe::Solver<>::Solver()
@ 0x7fb5bf02d3e3 caffe::Creator_SGDSolver<>()
@ 0x411666 caffe::SolverRegistry<>::CreateSolver()
@ 0x40ab20 train()
@ 0x40852c main
@ 0x7fb5bd56aec5 (unknown)
@ 0x408cfd (unknown)
@ 0x0 (unknown)
Segmentation fault
It seems like you are getting a segmentation fault setting up DeepHandModelLayer
. This layer is not part of caffe, but rather a "private" addition to caffe.
This layer reads several configuration files from folder configuration/
. Make sure you have the required files in the right path.
If you still experience difficulties with this layer, you should contact its authors, as it is a very specific topic.