caffe 错误与 glog

caffe error with glog

我已经成功安装了caffe。所有测试 运行 都很好。 当我尝试使用 hdf5 数据训练示例 (https://github.com/tenstep/DeepModel) 时出现错误。我在一些论坛上看到它与 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

您似乎在设置 DeepHandModelLayer 时遇到分段错误。该层不是 caffe 的一部分,而是 caffe 的 "private" 补充。

  1. 这一层从文件夹configuration/中读取几个配置文件。确保您在正确的路径中有所需的文件。

  2. 如果您在使用这一层时仍然遇到困难,您应该联系其作者,因为这是一个非常具体的主题。

::google::InitGoogleLogging(argv[0]);

这就是您需要抑制 caffe 输出而不是弄乱 vanilla 代码的全部内容。我花了很长时间才弄明白这一点。点击here查看来自caffe的例子