I am using on Caffe C++ for a Deep learning application. Whenever I load the model file, it prints the contents of entire .protext file on to the console. The printing is happening at this point,
shared_ptr<Net<float> > net_;
net_.reset(new Net<float>(model_file, TEST));
How do I disable this? Any help is appreciated.