caffe在solverstate的基础上继续训练模型
Posted 9分钟带帽丶
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了caffe在solverstate的基础上继续训练模型相关的知识,希望对你有一定的参考价值。
以mnist数据集为例:
bat训练脚本:
Build\\x64\\Release\\caffe.exe train --solver=examples/mnist/lenet_solver.prototxt pause
在这个模型的基础上,继续训练。
继续训练之前,也可以修改lenet_solver.prototxt中的学习率。
Build\\x64\\Release\\caffe.exe train --solver=examples/mnist/lenet_solver.prototxt --snapshot=examples/mnist/lenet_iter_1000.solverstate
pause
训练从1000次iterations开始。
用Python脚本启动训练:
import caffe caffe.set_device(int(0)) caffe.set_mode_gpu() solver = caffe.SGDSolver(\'.\\\\examples\\\\mnist\\\\lenet_solver.prototxt\') solver.solve()
加载已训练的模型,只用加一句话
import caffe caffe.set_device(int(0)) caffe.set_mode_gpu() solver = caffe.SGDSolver(\'.\\\\examples\\\\mnist\\\\lenet_solver.prototxt\') solver.restore(\'examples\\\\mnist\\\\lenet_iter_5000.solverstate\') solver.solve()
以上是关于caffe在solverstate的基础上继续训练模型的主要内容,如果未能解决你的问题,请参考以下文章
Caffe-python interface 学习|网络训练部署测试