caffe使用ctrl-c不能保存模型

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了caffe使用ctrl-c不能保存模型相关的知识,希望对你有一定的参考价值。

caffe使用Ctrl-c 不能保存模型:

  是因为使用的是 tee输出日志
  解决方法:kill -s SIGINT <proc_id>
  或者使用
  GLOG_log_dir=/path/to/log/dir $CAFFE_ROOT/bin/caffee.bin train
    —solver=/path/to/solver.prototxt  来输出日志

以上是关于caffe使用ctrl-c不能保存模型的主要内容,如果未能解决你的问题,请参考以下文章

pytorch模型转caffe模型

caffe 绘制网络模型

caffe保存训练log日志文件并利用保存的log文件绘制accuary loss曲线图

使用 caffe 模型遇到 opencv/dnn 问题

二寒假学习计划:Tensorflow之保存加载模型

如何将经过训练的 caffe 模型以 h5 格式加载到 c++ caffe 网络?