码迷,mamicode.com
首页 > 其他好文 > 详细

关闭caffe日志输出

时间:2020-07-02 16:30:42      阅读:62      评论:0      收藏:0      [点我收藏+]

标签:bsp   set   ini   oid   pen   parameter   typename   col   caffe   

在caffe加载模型的时候会输出一大串log,该log可以通过如下方法关闭

在编译libcaffe.so的时候,在src/caffe/net.cpp Init函数进入的时候加入

fLI::FLAGS_minloglevel=3;

如下所示

template <typename Dtype>
void Net<Dtype>::Init(const NetParameter& in_param) {
  fLI::FLAGS_minloglevel=3;//added by chenhongwei,20200702
  // Set phase from the state.
  phase_ = in_param.state().phase();
...

 

关闭caffe日志输出

标签:bsp   set   ini   oid   pen   parameter   typename   col   caffe   

原文地址:https://www.cnblogs.com/cumtchw/p/13225166.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!