如果不进行可视化,只想得到一个最终的训练model, 那么代码非常简单,如下 :
import caffe
caffe.set_device(0)
caffe.set_mode_gpu()
solver = caffe.SGDSolver('/home/xxx/data/solver.prototxt')
solver.solve()
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:caffe的python接口学习(3)训练模型training - Python技术站
如果不进行可视化,只想得到一个最终的训练model, 那么代码非常简单,如下 :
import caffe
caffe.set_device(0)
caffe.set_mode_gpu()
solver = caffe.SGDSolver('/home/xxx/data/solver.prototxt')
solver.solve()
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:caffe的python接口学习(3)训练模型training - Python技术站