隔几天没有记录下来,竟然自己都快忘记了的节奏。。。
********solver.prototxt************************************************************************************************
在solver.prototxt文件中添加变量:resultforsnap = 0.64
在src/caffe/proto/caffe.proto 文件中,
message SolverParameter {}中添加:
optional float resultforsnap = 40 [default = 1e-8];
在include/caffe/solver.hpp文件中添加变量:
float maxresult;
如何使用:
在solver.cpp中调用示例为:
maxresult = param_.resultforsnap();
并且一定要make clean--->make...
*******************************************************************************************************
********train_test.prototxt************************************************************************************************
在src/caffe/proto/caffe.proto 文件中,
如何使用?
请在对应的layer中,
this->layer_param_.softmaxloss_param().temp()