Caffe学习系列(10):命令行解析

 训练网络命令:

sudo sh ./build/tools/caffe train --solver=examples/mnist/train_lenet.sh

 用预先训练好的权重来fine-tuning模型,需要一个caffemodel,不能和-snapshot同时使用

./build/tools/caffe train -solver examples/finetuning_on_flickr_style/solver.prototxt -weights models/bvlc_reference_caffenet/bvlc_reference_caffenet.caffemodel

参考:http://www.cnblogs.com/denny402/p/5076285.html

原文地址:https://www.cnblogs.com/573177885qq/p/5823738.html