我已经成功地安装了太妃糖。所有测试都进行得很好。当我试图使用https://github.com/tenstep/DeepModel数据训练一个示例( hdf5 )时,我会出错。我在某个论坛上读到它与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发布于 2016-06-14 06:38:40
似乎您正在获得一个分段错误设置DeepHandModelLayer。这一层不是caffe的一部分,而是对caffe的“私有”添加。
configuration/读取多个配置文件。确保在正确的路径上有所需的文件。发布于 2018-09-26 02:32:48
::google::InitGoogleLogging(argv[0]);这是您需要的全部,以抑制caffe输出,而不是混乱的普通代码。我花了很长时间才弄明白这件事。单击这里检查caffe中的示例。
https://stackoverflow.com/questions/37792995
复制相似问题